Skip to content

gh/workflows: add non-gpu unit tests #22

gh/workflows: add non-gpu unit tests

gh/workflows: add non-gpu unit tests #22

Workflow file for this run

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
if: ${{ always() && contains(needs.*.result, 'failure') }}
steps:
- run: echo "One or more matrix tests failed"; exit 1