Skip to content

Commit

Permalink
[#39]: Add tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobDomagala committed Oct 26, 2022
1 parent 32fd578 commit 5225cc7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests

on:
pull_request

jobs:
check:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest github
- name: Test with pytest
run: |
pytest

0 comments on commit 5225cc7

Please sign in to comment.