Skip to content

Commit 5bde496

Browse files
committed
run static-code-analysis on all OS
1 parent bc248e8 commit 5bde496

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ jobs:
7878
parallel-finished: true
7979

8080
static-code-analysis:
81-
runs-on: ubuntu-latest
81+
runs-on: ${{ matrix.os }}
82+
strategy:
83+
matrix:
84+
os: [ ubuntu-latest, macos-latest, windows-latest ]
8285
steps:
8386
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
8487
with:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ disallow_incomplete_defs = true
132132
warn_redundant_casts = true
133133
warn_unused_ignores = true
134134
exclude = [
135+
"^build",
135136
"^doc/conf.py$",
136137
"^test",
137138
"^can/interfaces/etas",

0 commit comments

Comments
 (0)