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 87e2f65 commit 3ff12f4Copy full SHA for 3ff12f4
.github/workflows/services-all-features.yml
@@ -0,0 +1,31 @@
1
+name: Check All Features for Services
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 0 * * *"
7
8
+env:
9
+ RUSTFLAGS: --deny warnings --allow unused_attributes
10
+ CARGO_INCREMENTAL: 0
11
12
+jobs:
13
+ test-services:
14
+ name: Services Tests
15
+ runs-on: macos-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - uses: actions-rs/toolchain@v1
19
+ with:
20
+ toolchain: stable
21
+ profile: minimal
22
+ override: true
23
24
+ - uses: Swatinem/rust-cache@v1
25
26
+ - name: check all features
27
+ run: cargo check --manifest-path services/Cargo.toml --all-features
28
29
+ - name: display free disk space
30
+ run: df -h /
31
+ if: ${{ always() }}
0 commit comments