Skip to content

Commit

Permalink
WIP: try running GH actions workflow under QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Jan 5, 2024
1 parent 3e5dd2c commit 74d6404
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/qemu_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: QEMU test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: jirutka/setup-alpine@v1
with:
arch: aarch64

- name: Check uname
run: uname -a
shell: alpine.sh {0}

- uses: actions/setup-python@v5
with:
python-version: '3.11'
shell: alpine.sh {0}

- name: Pip Install
run: pip install -r requirements.txt
shell: alpine.sh {0}

- name: Pytest
run: pytest python
shell: alpine.sh {0}

- name: MyPy
run: mypy python
shell: alpine.sh {0}

0 comments on commit 74d6404

Please sign in to comment.