@@ -89,29 +89,29 @@ jobs:
89
89
shared-key : ${{ github.workflow }}-${{ github.job }}-${{ matrix.target }}
90
90
91
91
- name : Check aoide-core
92
- run : | -
92
+ run : > -
93
93
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
94
94
--manifest-path crates/core/Cargo.toml
95
95
96
96
- name : Check aoide-core-json
97
- run : | -
98
- ccargo check --locked --all-targets --all-features --target ${{ matrix.target }}
97
+ run : > -
98
+ cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
99
99
--manifest-path crates/core-json/Cargo.toml
100
100
101
101
- name : Check aoide-core-api
102
- run : | -
102
+ run : > -
103
103
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
104
104
--manifest-path crates/core-api/Cargo.toml
105
105
106
106
- name : Check aoide-core-api-json
107
- run : | -
107
+ run : > -
108
108
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
109
109
--manifest-path crates/core-api-json/Cargo.toml
110
110
111
111
- name : Check aoide-desktop-app
112
112
# TODO: Re-enable after cross-compilation issues for wayland-sys have been fixed.
113
113
if : false
114
- run : | -
114
+ run : > -
115
115
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
116
116
--manifest-path crates/desktop-app/Cargo.toml
117
117
@@ -121,73 +121,73 @@ jobs:
121
121
--manifest-path crates/media-file/Cargo.toml
122
122
123
123
- name : Check aoide-repo
124
- run : | -
124
+ run : > -
125
125
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
126
126
--manifest-path crates/repo/Cargo.toml
127
127
128
128
- name : Check aoide-repo-sqlite
129
- run : | -
129
+ run : > -
130
130
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
131
131
--manifest-path crates/repo-sqlite/Cargo.toml
132
132
133
133
- name : Check aoide-storage-sqlite
134
- run : | -
134
+ run : > -
135
135
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
136
136
--manifest-path crates/storage-sqlite/Cargo.toml
137
137
138
138
- name : Check aoide-search-index-tantivy
139
- run : | -
139
+ run : > -
140
140
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
141
141
--manifest-path crates/search-index-tantivy/Cargo.toml
142
142
143
143
- name : Check aoide-usecases
144
- run : | -
144
+ run : > -
145
145
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
146
146
--manifest-path crates/usecases/Cargo.toml
147
147
148
148
- name : Check aoide-usecases-sqlite
149
- run : | -
149
+ run : > -
150
150
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
151
151
--manifest-path crates/usecases-sqlite/Cargo.toml
152
152
153
153
- name : Check aoide-backend-embedded
154
- run : | -
154
+ run : > -
155
155
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
156
156
--manifest-path crates/backend-embedded/Cargo.toml
157
157
158
158
- name : Check aoide-backend-webapi-json
159
- run : | -
159
+ run : > -
160
160
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
161
161
--manifest-path crates/backend-webapi-json/Cargo.toml
162
162
163
163
- name : Check aoide-websrv-warp-sqlite
164
- run : | -
164
+ run : > -
165
165
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
166
166
--manifest-path crates/websrv-warp-sqlite/Cargo.toml
167
167
168
168
- name : Check aoide-websrv
169
- run : | -
169
+ run : > -
170
170
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
171
171
--manifest-path websrv/Cargo.toml
172
172
173
173
- name : Check aoide-file-collection-app
174
- run : | -
174
+ run : > -
175
175
cargo check --locked --all-targets --all-features --target ${{ matrix.target }}
176
176
--manifest-path file-collection-app/Cargo.toml
177
177
178
178
- name : Build tests with all features enabled
179
- run : | -
179
+ run : > -
180
180
cargo check --locked --workspace --all-features --target ${{ matrix.target }}
181
181
--no-run
182
182
183
183
- name : Run tests with all features enabled
184
184
if : matrix.runnable
185
- run : | -
185
+ run : > -
186
186
cargo check --locked --workspace --all-features --target ${{ matrix.target }}
187
187
-- --nocapture --quiet
188
188
189
189
- name : Run doctests with all features enabled (only on default target)
190
190
if : matrix.default_target
191
- run : | -
191
+ run : > -
192
192
cargo test --locked --workspace --all-features
193
193
--doc
0 commit comments