Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.github/workflows/pytest.yaml
blob: 39ef62c9eaaf653d0a7b72c67e27e6591d0f9f6f (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@v2
            - 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