Skip to content

WIP: try running GH actions workflow under QEMU #1

WIP: try running GH actions workflow under QEMU

WIP: try running GH actions workflow under QEMU #1

Workflow file for this run

name: Pull Request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
node:
uses: nasa-gcn/.github/.github/workflows/node.yml@main
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