diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/auto.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index f0c280f..30e5798 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -35,7 +35,7 @@ jobs: # Run coverage xml - name: Run unittests with coverage and generate xml - run: poetry run dev covxml + run: ./dev.sh covxml # xml -> codecov - name: Upload coverage reports to Codecov @@ -45,4 +45,4 @@ jobs: # pylint - name: Run pylint against the code - run: poetry run pylint + run: ./dev.sh pylint |