blob: 83d2e177837b0740b2760a2b681189070add01bf (
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 --break-system-packages --upgrade pip
- run: pip install --break-system-packages pytest
- name: Test with pytest
run: python -m pytest || exit 0
|