Skip to content

Commit

Permalink
create unit-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasMelton committed Oct 4, 2024
1 parent 38d421e commit 1f47ad4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9' # Specify the Python version
python-version: '3.9'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry # If you're using Poetry
poetry install # Install dependencies from pyproject.toml
pip install poetry
poetry install --with dev # Install dependencies from pyproject.toml
- name: Run tests
run: |
Expand Down

0 comments on commit 1f47ad4

Please sign in to comment.