Skip to content

Commit

Permalink
CI: add GitHub Actions workflow for running tests with pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovler-Young committed Nov 19, 2024
1 parent efb2615 commit 0824807
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pytest

on:
push:

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
- name: Install dependencies
run: pdm install
- name: Test with pytest
run: |
pytest

0 comments on commit 0824807

Please sign in to comment.