Skip to content

Minor reformat

Minor reformat #40

name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: fmtcheck
run: make fmtcheck
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Upgrade pip and virtualenv to latest
run: pip install --upgrade pip virtualenv
- name: Test with pytest
run: make test