Skip to content

Commit 56540c9

Browse files
committed
chore(ci): cleanup workflows and add windows and macos
1 parent 7e56960 commit 56540c9

File tree

2 files changed

+11
-19
lines changed

2 files changed

+11
-19
lines changed

.github/workflows/code-quality.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,22 @@ on:
99
- '**'
1010

1111
jobs:
12+
pre-commit:
13+
name: Code Quality
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
18+
- uses: pre-commit/action@v2.0.0
19+
1220
tests:
13-
name: ${{ matrix.os }} / ${{ matrix.python-version }}
21+
name: Test / ${{ matrix.python-version }} / ${{ matrix.os }}
1422
runs-on: ${{ matrix.os }}-latest
1523
continue-on-error: ${{ matrix.experimental }}
24+
needs: [pre-commit]
1625
strategy:
1726
matrix:
18-
os: [Ubuntu]
27+
os: [ubuntu, windows, macos]
1928
python-version: ["3.10", "3.11", "3.12", "3.13"]
2029
experimental: [false]
2130
fail-fast: false

0 commit comments

Comments
 (0)