Skip to content

Commit

Permalink
create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jandom committed Jul 27, 2024
1 parent b203778 commit b88cb48
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pytest:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify the Python version you are using
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[tests]
- name: Run pytest
run: |
python -m pytest tests/

0 comments on commit b88cb48

Please sign in to comment.