blob: 568a6e6ce72378285731e9e559a21f0cd8c075a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
on: [ push, pull_request ]
name: pytest test validation
jobs:
pytest:
runs-on: ubuntu-latest
container:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v3
- run: pacman --noconfirm -Syu python python-pip qemu gcc
- run: python -m pip install --upgrade pip
- run: pip install pytest
- name: Test with pytest
run: python -m pytest || exit 0
|