Skip to content

Commit

Permalink
GitHub Action to run pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Apr 15, 2023
1 parent ca02c22 commit 805b76e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: pytest
on:
push:
# branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install --user pytest
- run: pytest

0 comments on commit 805b76e

Please sign in to comment.