Skip to content

WIP: try running GH actions workflow under QEMU #3

WIP: try running GH actions workflow under QEMU

WIP: try running GH actions workflow under QEMU #3

Workflow file for this run

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}

Check failure on line 26 in .github/workflows/qemu_test.yml

View workflow run for this annotation

GitHub Actions / QEMU test

Invalid workflow file

The workflow is not valid. .github/workflows/qemu_test.yml (Line: 26, Col: 9): Unexpected value 'shell'
- 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}