Skip to content

Commit

Permalink
Improve Github action unit test on FreeBSD systems #2749
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed May 6, 2024
1 parent c57af5d commit 4df945f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,23 @@ jobs:
- name: Unitary tests
run: |
python ./unitest.py
python ./unitest.py
test-freebsd:

runs-on: ubuntu-22.04

steps:

- uses: actions/checkout@v4

- name: Run tests
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y python3 py-pip
run: |
set -e -x
python3 -m pip install --user -r requirements.txt
python ./unitest.py

0 comments on commit 4df945f

Please sign in to comment.