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 fae9365 commit 852506dCopy full SHA for 852506d
.github/workflows/ci.yml
@@ -10,19 +10,18 @@ jobs:
10
tests:
11
uses: ./.github/workflows/tests.yml
12
13
- code-style:
14
- uses: ./.github/workflows/code-style.yml
+ # code-style:
+ # uses: ./.github/workflows/code-style.yml
15
16
- # code-style-fix:
17
- # uses: ./.github/workflows/code-style-fix.yml
+ code-style-fix:
+ uses: ./.github/workflows/code-style-fix.yml
18
19
static-analysis:
20
uses: ./.github/workflows/static-analysis.yml
21
22
quality-gate:
23
runs-on: ubuntu-latest
24
- needs: [tests, code-style, static-analysis]
25
- # needs: [tests, code-style-fix, static-analysis] # Use this if using auto-fix
+ needs: [tests, code-style-fix, static-analysis]
26
if: always()
27
28
steps:
0 commit comments