Skip to content

Commit

Permalink
Add FreeBSD testing in Github Actions (#419)
Browse files Browse the repository at this point in the history
Fixes #389
  • Loading branch information
r-darwish committed Jan 24, 2022
1 parent f482481 commit c4cd7f3
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -30,12 +30,26 @@ jobs:
run: |
go test --race ./...
testFreeBSD:
runs-on: macos-10.15
name: test (freebsd, 1.17)
steps:
- uses: actions/checkout@v2
- name: test (freebsd, 1.17)
id: test
uses: vmactions/freebsd-vm@v0.1.5
with:
usesh: true
prepare: pkg install -y go
run: |
go test
lint:
runs-on: ubuntu-latest
steps:
- name: setup Go
uses: actions/setup-go@v2
with:
with:
go-version: '1.17'

- name: checkout
Expand All @@ -55,5 +69,3 @@ jobs:
with:
version: latest
skip-go-installation: true


0 comments on commit c4cd7f3

Please sign in to comment.