Skip to content

Commit

Permalink
Change CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Feb 20, 2024
1 parent 65be776 commit 3d7fedb
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
persist-credentials: false

- name: Install dependencies ☕️
run: pip install .[dev]
run: |
pip install -U pip setuptools
pip install .[dev]
- name: Lint 🔍
run: ./tests/linting.sh
Expand All @@ -33,7 +35,9 @@ jobs:
persist-credentials: false

- name: Install dependencies ☕️
run: pip install .[dev]
run: |
pip install -U pip setuptools
pip install .[dev]
- name: Typecheck 📋
run: ./tests/typecheck.sh
Expand All @@ -52,7 +56,9 @@ jobs:
persist-credentials: false

- name: Install dependencies ☕️
run: pip install .[dev]
run: |
pip install -U pip setuptools
pip install .[dev]
- name: Test 🎢
run: ./tests/unittest.sh
Expand Down Expand Up @@ -91,7 +97,9 @@ jobs:
submodules: recursive

- name: Install dependencies ☕️
run: pip install .[dev]
run: |
pip install -U pip setuptools
pip install .[dev]
- name: Run coverage test 🎢
run: ./tests/coverage.sh
Expand Down

0 comments on commit 3d7fedb

Please sign in to comment.