Skip to content

Commit 052b302

Browse files
committed
Address code review feedback
1 parent ce77a00 commit 052b302

File tree

1 file changed

+5
-5
lines changed
  • exasol/toolbox/templates/github/workflows

1 file changed

+5
-5
lines changed

exasol/toolbox/templates/github/workflows/checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
Lint:
5454
name: Linting (Python-${{ matrix.python-version }})
55-
needs: [ Version-Check ]
55+
needs: [ Version-Check, build-matrix ]
5656
runs-on: ubuntu-latest
5757
strategy:
5858
fail-fast: false
@@ -79,7 +79,7 @@ jobs:
7979

8080
Type-Check:
8181
name: Type Checking (Python-${{ matrix.python-version }})
82-
needs: [ Version-Check ]
82+
needs: [ Version-Check, build-matrix ]
8383
runs-on: ubuntu-latest
8484
strategy:
8585
fail-fast: false
@@ -99,7 +99,7 @@ jobs:
9999

100100
Security:
101101
name: Security Checks (Python-${{ matrix.python-version }})
102-
needs: [ Version-Check ]
102+
needs: [ Version-Check, build-matrix ]
103103
runs-on: ubuntu-latest
104104
strategy:
105105
fail-fast: false
@@ -125,7 +125,7 @@ jobs:
125125
include-hidden-files: true
126126

127127
Format:
128-
name: Format Check (Python-${{ matrix.python-version }})
128+
name: Format Check
129129
runs-on: ubuntu-latest
130130

131131
steps:
@@ -142,7 +142,7 @@ jobs:
142142

143143
Tests:
144144
name: Unit-Tests (Python-${{ matrix.python-version }}, Exasol-${{ matrix.exasol-version}})
145-
needs: [ Documentation, Lint, Type-Check, Security, Format ]
145+
needs: [ Documentation, Lint, Type-Check, Security, Format, build-matrix ]
146146
runs-on: ubuntu-latest
147147
env:
148148
GITHUB_TOKEN: ${{ secrets.ALTERNATIVE_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)