Skip to content

Commit

Permalink
Use path
Browse files Browse the repository at this point in the history
  • Loading branch information
maldoinc committed Sep 13, 2023
1 parent b6e5d96 commit e6dd3ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
run: source .venv/bin/activate
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --no-root
.venv/bin/python -m pip install --upgrade pip
.venv/bin/pip install poetry
.venv/bin/poetry install --no-root
- name: Lint
run: |
poetry run ruff --format=github wireup
.venv/bin/poetry run ruff --format=github wireup
- name: Check formatting
run: |
poetry run black --check .
.venv/bin/poetry run black --check .
- name: Run tests
run: |
python -m unittest discover -s test/
.venv/bin/python -m unittest discover -s test/

0 comments on commit e6dd3ee

Please sign in to comment.