summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2024-05-06 10:25:46 +0200
committernicolargo <nicolashennion@gmail.com>2024-05-06 10:25:46 +0200
commit056a10f051bb3e2e3f3bcecd3d16a3b8e93f56d5 (patch)
treeb788a84792746e7d0b4e24e911fd10293f10fab1
parentc57af5dfefd07c5806ee8535d2f6c8e5a24da3c1 (diff)
parent4df945f52e8ae981191e6ac144e7a263f1d181e0 (diff)
Merge branch 'issue2749' into develop
-rw-r--r--.github/workflows/test.yml21
1 files changed, 20 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 46b4c585..ffc6ad38 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -104,4 +104,23 @@ jobs:
- name: Unitary tests
run: |
- python ./unitest.py \ No newline at end of file
+ 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