Skip to content

debug: start from example known to work (?) #1

debug: start from example known to work (?)

debug: start from example known to work (?) #1

Workflow file for this run

name: miminal
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
run: |
pytest -v *.py