Skip to content

Commit

Permalink
gh/workflows: add non-gpu unit tests
Browse files Browse the repository at this point in the history
Add GitHub workflow to execute non-gpu unit tests on
the GitHub runners.

Signed-off-by: U. Artie Eoff <[email protected]>
  • Loading branch information
uartie committed Aug 15, 2024
1 parent 5ad0935 commit 52b6069
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: unit

on: [ push, pull_request ]

jobs:
test:
name: "Run Tests"
continue-on-error: true
strategy:
matrix:
ubuntu-version: [ "ubuntu-22.04", "ubuntu-24.04", "ubuntu-latest" ]
python-version: [ "3.10", "3.11", "3.12" ]
runs-on: ${{ matrix.ubuntu-version }}

steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: 'true'
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
sudo sysctl kernel.dmesg_restrict=0
- name: Test "list"
run: ./vaapi-fits list
- name: Test "self"
run: ./vaapi-fits run --pl NA --device /dev/null -vv --parallel-metrics --call-timeout 10 --ctapr 0 test/self

test-status:
needs: test
runs-on: ubuntu-latest
steps:
- run: echo "One or more matrix tests failed?"

0 comments on commit 52b6069

Please sign in to comment.