File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change 82
82
# path: rust
83
83
# key: ${{ runner.os }}-packages-${{ hashFiles('rust/.git/HEAD') }}
84
84
85
+ - name : Prepare
86
+ run : ./y.sh prepare --only-libcore
87
+
88
+ - name : Check formatting
89
+ run : ./y.sh fmt --check
90
+
91
+ - name : Prepare - name: clippy
92
+ run : |
93
+ cargo clippy --all-targets -- -D warnings
94
+ cargo clippy --all-targets --no-default-features -- -D warnings
95
+ cd build_system && cargo clippy --all-targets -- -D warnings
96
+
85
97
- name : Build
86
98
run : |
87
- ./y.sh prepare --only-libcore
88
99
./y.sh build --sysroot
89
100
./y.sh test --cargo-tests
90
101
@@ -106,14 +117,6 @@ jobs:
106
117
run : |
107
118
./y.sh test --release --clean --build-sysroot ${{ matrix.commands }}
108
119
109
- - name : Check formatting
110
- run : ./y.sh fmt --check
111
-
112
- - name : clippy
113
- run : |
114
- cargo clippy --all-targets -- -D warnings
115
- cargo clippy --all-targets --features master -- -D warnings
116
-
117
120
duplicates :
118
121
runs-on : ubuntu-24.04
119
122
steps :
You can’t perform that action at this time.
0 commit comments