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 3f25d8c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/qemu_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: QEMU test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: jirutka/setup-alpine@v1
with:
arch: aarch64

- uses: actions/checkout@v4

- name: Check uname
run: uname -a

- uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Pip Install
run: pip install -r requirements.txt

- name: Pytest
run: pytest python

- name: MyPy
run: mypy python

0 comments on commit 3f25d8c

Please sign in to comment.