diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3d98932..c817f49 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,10 +30,10 @@ jobs: cd ../.. - name: Run tests with pytest - run: ./prj/script/venv/bin/pytest test/ + run: ./prj/venv/bin/pytest test/ - name: Run type checking with mypy - run: ./prj/script/venv/bin/mypy --check-untyped-defs -p test -p src + run: ./prj/venv/bin/mypy --check-untyped-defs -p test -p src #- name: Run linter with pylint # run: ./prj/script/venv/bin/python -m pylint src