Skip to content

Commit 3ff12f4

Browse files
authored
compile all features for services nightly & on demand (#447)
1 parent 87e2f65 commit 3ff12f4

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)