Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.github/workflows/pytest.yaml
blob: 6c62dd54c6ffb31516118fc1cf57e10a2580fcb8 (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/archlinux:latest
            options: --privileged
        steps:
            - uses: actions/checkout@v4
            - 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