Skip to content

Commit

Permalink
debug: start from example known to work (?)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangohr committed Dec 17, 2024
1 parent c452072 commit 13dfdc0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/simple.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 13dfdc0

Please sign in to comment.