-
Notifications
You must be signed in to change notification settings - Fork 46
58 lines (55 loc) · 1.57 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Rust
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
with:
workspaces: integration_tests/
- name: Build Integration Tests
run: cd integration_tests && cargo check --all --verbose
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
with:
workspaces: integration_tests/
- name: Run Orchestrator tests
run: cd integration_tests && cargo test --all --release --verbose
rustfmt:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- name: Check code formatting
run: rustup component add rustfmt && cd integration_tests && cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
with:
workspaces: integration_tests/
- name: Check for Clippy lints
run: rustup component add clippy && cd integration_tests && cargo clippy --all --all-targets --all-features -- -D warnings
audit:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
with:
workspaces: integration_tests/
- name: Run Cargo Audit
run: cargo install cargo-audit && cd integration_tests && cargo audit