You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
858 B
48 lines
858 B
name: Tests |
|
|
|
on: |
|
push: |
|
paths-ignore: |
|
- 'web/**' |
|
pull_request: |
|
paths-ignore: |
|
- 'web/**' |
|
|
|
jobs: |
|
test: |
|
strategy: |
|
matrix: |
|
go-version: [1.16.x, 1.17.x] |
|
os: [ubuntu-latest, macos-latest, windows-latest] |
|
runs-on: ${{ matrix.os }} |
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- name: Install go |
|
uses: actions/setup-go@v3 |
|
with: |
|
go-version: '^1' |
|
|
|
- name: Run tests |
|
run: go test ./... |
|
|
|
test-bsds: |
|
runs-on: macos-10.15 |
|
strategy: |
|
matrix: |
|
os: |
|
- name: freebsd |
|
version: 12.2 |
|
- name: openbsd |
|
version: 6.8 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- name: Install go |
|
uses: actions/setup-go@v3 |
|
with: |
|
go-version: '^1' |
|
|
|
- name: Run tests |
|
run: go test ./...
|
|
|