Skip to content

Commit

Permalink
ci(lint-test): fix pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Nytelife26 committed Jan 24, 2024
1 parent 7548c80 commit 3fbaaef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
key: ${{ runner.os }}-py${{ matrix.python }}-${{ hashFiles('**/poetry.lock') }}
- name: "[INIT] Install dependencies"
if: ${{ !steps.cache-restore.outputs.cache-hit }}
run: pip install poetry && poetry install
run: poetry install
# - name: "[EXEC] Lint"
# run: ./utils ci lint
# - name: Run Pre-Commit Tests 🧪
Expand All @@ -45,7 +45,7 @@ jobs:
shell: bash
strategy:
matrix:
python: ["3.8", "3.10", "3.12"] # 5 versions / years of coverage
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: "[INIT] Checkout repository"
Expand All @@ -66,7 +66,7 @@ jobs:
key: ${{ runner.os }}-py${{ matrix.python }}-${{ hashFiles('**/poetry.lock') }}
- name: "[INIT] Install dependencies"
if: ${{ !steps.cache-restore.outputs.cache-hit }}
run: pip install poetry && poetry install
run: poetry install
- name: "[EXEC] Test-Build Package"
run: poetry build
- name: "[EXEC] Unittests"
Expand Down

0 comments on commit 3fbaaef

Please sign in to comment.