Skip to content

Commit 998fb28

Browse files
committed
Remove redundant skipping CI checks
1 parent 283279f commit 998fb28

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
##########################
2222

2323
clippy:
24-
if: ${{ github.ref == 'refs/heads/main'
25-
|| startsWith(github.ref, 'refs/tags/v')
26-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
2724
runs-on: ubuntu-latest
2825
steps:
2926
- uses: actions/checkout@v3
@@ -36,9 +33,6 @@ jobs:
3633
- run: make cargo.lint
3734

3835
rustfmt:
39-
if: ${{ github.ref == 'refs/heads/main'
40-
|| startsWith(github.ref, 'refs/tags/v')
41-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
4236
runs-on: ubuntu-latest
4337
steps:
4438
- uses: actions/checkout@v3
@@ -58,9 +52,6 @@ jobs:
5852
###########
5953

6054
feature:
61-
if: ${{ github.ref == 'refs/heads/main'
62-
|| startsWith(github.ref, 'refs/tags/v')
63-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
6455
strategy:
6556
fail-fast: false
6657
matrix:
@@ -91,9 +82,6 @@ jobs:
9182

9283
fuzz:
9384
name: Fuzzing
94-
if: ${{ github.ref == 'refs/heads/main'
95-
|| startsWith(github.ref, 'refs/tags/v')
96-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
9785
strategy:
9886
fail-fast: false
9987
matrix:
@@ -118,9 +106,6 @@ jobs:
118106

119107
msrv:
120108
name: MSRV
121-
if: ${{ github.ref == 'refs/heads/main'
122-
|| startsWith(github.ref, 'refs/tags/v')
123-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
124109
strategy:
125110
fail-fast: false
126111
matrix:
@@ -147,9 +132,6 @@ jobs:
147132
- run: make test.cargo
148133

149134
test:
150-
if: ${{ github.ref == 'refs/heads/main'
151-
|| startsWith(github.ref, 'refs/tags/v')
152-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
153135
strategy:
154136
fail-fast: false
155137
matrix:
@@ -179,9 +161,6 @@ jobs:
179161
#################
180162

181163
rustdoc:
182-
if: ${{ github.ref == 'refs/heads/main'
183-
|| startsWith(github.ref, 'refs/tags/v')
184-
|| !contains(github.event.head_commit.message, '[skip ci]') }}
185164
runs-on: ubuntu-latest
186165
steps:
187166
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)