Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
python-version: "3.10"
- name: Install hatch
run: pip install hatch
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.10:test

Expand All @@ -37,6 +39,9 @@ jobs:
python-version: "3.11.9"
- name: Install hatch
run: pip install hatch
# NOTE: due to bug: https://github.com/pallets/click/issues/3066
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.11:test

Expand All @@ -51,6 +56,8 @@ jobs:
python-version: "3.12"
- name: Install hatch
run: pip install hatch
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.12:test

Expand All @@ -65,6 +72,8 @@ jobs:
python-version: "3.11.9"
- name: Install hatch
run: pip install hatch
- name: Install click
run: pip install click!=8.3.0
- name: Lint
run: hatch run lint

Expand Down
Loading