Skip to content

Commit

Permalink
matrix pre-commit ci against python version (Chia-Network#17698)
Browse files Browse the repository at this point in the history
* matrix pre-commit ci against python version

* name

* `.absolute()`
  • Loading branch information
altendky authored Mar 25, 2024
1 parent db89136 commit def8661
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
pre-commit:
name: ${{ matrix.os.name }} ${{ matrix.arch.name }}
name: ${{ matrix.os.name }} ${{ matrix.arch.name }} ${{ matrix.python.major_dot_minor }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
timeout-minutes: 20
strategy:
Expand All @@ -42,7 +42,11 @@ jobs:
- name: Intel
matrix: intel
python:
- major_dot_minor: "3.8"
- major_dot_minor: "3.9"
- major_dot_minor: "3.10"
- major_dot_minor: "3.11"
- major_dot_minor: "3.12"
exclude:
- os:
matrix: windows
Expand Down
2 changes: 1 addition & 1 deletion activated.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import subprocess
import sys

here = pathlib.Path(__file__).parent
here = pathlib.Path(__file__).parent.absolute()


def main(*args: str) -> int:
Expand Down

0 comments on commit def8661

Please sign in to comment.