We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf01ac commit 9bde5afCopy full SHA for 9bde5af
.github/workflows/pre-commit.yml
@@ -7,8 +7,12 @@ on: [pull_request]
7
8
jobs:
9
pre-commit:
10
- name: Run pre-commit
11
- runs-on: ubuntu-latest
+ name: 🏃🏼 Pre-commit on ${{ matrix.os }} / Python ${{ matrix.python-version }}
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, windows-latest]
15
+ python-version: ["3.14"]
16
steps:
17
- name: Checkout Code
18
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -18,7 +22,7 @@ jobs:
22
- name: Set up Python
19
23
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
20
24
with:
21
- python-version: "3.x"
25
+ python-version: ${{ matrix.python-version }}
26
architecture: "x64"
27
- name: Install dependencies
28
run: |
0 commit comments