Skip to content

Commit 97775b4

Browse files
committed
ci: deploy: Remove the condition for "Clippy"
1 parent d22162c commit 97775b4

File tree

1 file changed

+6
-28
lines changed

1 file changed

+6
-28
lines changed

.github/workflows/deploy.yaml

Lines changed: 6 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -29,50 +29,28 @@ jobs:
2929
override: 'true'
3030
default: 'true'
3131

32-
- name: Build and Test (dev)
32+
- name: Test (dev)
3333
env:
34-
FMT: 'false'
35-
LINT: 'false'
34+
FMT: 'true'
35+
LINT: 'true'
3636
DOC: 'true'
3737
BUILD: 'true'
3838
TEST: 'true'
3939
BUILD_FLAGS: '--locked'
4040
TEST_FLAGS: ''
4141
run: ./test.sh
4242

43-
- name: Build and Test (release)
43+
- name: Test (release)
4444
env:
45-
FMT: 'false'
46-
LINT: 'false'
45+
FMT: 'true'
46+
LINT: 'true'
4747
DOC: 'true'
4848
BUILD: 'true'
4949
TEST: 'true'
5050
BUILD_FLAGS: '--locked'
5151
TEST_FLAGS: ''
5252
run: ./test.sh --release
5353

54-
- name: Fmt and Clippy (dev)
55-
if: runner.os == 'Linux'
56-
env:
57-
FMT: 'true'
58-
LINT: 'true'
59-
BUILD: 'false'
60-
TEST: 'false'
61-
BUILD_FLAGS: ''
62-
TEST_FLAGS: ''
63-
run: ./test.sh
64-
65-
- name: Clippy (release)
66-
if: runner.os == 'Linux'
67-
env:
68-
FMT: 'false'
69-
LINT: 'true'
70-
BUILD: 'false'
71-
TEST: 'false'
72-
BUILD_FLAGS: ''
73-
TEST_FLAGS: ''
74-
run: ./test.sh --release
75-
7654
build_linux:
7755
name: Build
7856

0 commit comments

Comments
 (0)