Skip to content

Commit

Permalink
ci: freebsd
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperupcall committed Oct 6, 2023
1 parent 4085e55 commit 531b0be
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,41 @@ jobs:
env:
GITHUB_API_TOKEN: ${{ github.token }}

freeebsd:
# needs: detect-changes
# only run if
# - changes to cli
# if: ${{ needs.detect-changes.outputs.cli == 'true' }}
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
uses: vmactions/freebsd-vm@v0
with:
usesh: true
prepare: |
pkg install -y devel/bats-core devel/git net/curl
run: |
bats ./test
openbsd:
# needs: detect-changes
# only run if
# - changes to cli
# if: ${{ needs.detect-changes.outputs.cli == 'true' }}
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Test in OpenBSD
uses: vmactions/openbsd-vm@v0
with:
usesh: true
prepare: |
pkg install -y devel/bats-core devel/git net/curl
run: |
bats ./test
macos:
needs: detect-changes
# only run if
Expand Down

0 comments on commit 531b0be

Please sign in to comment.