-
-
Notifications
You must be signed in to change notification settings - Fork 24
30 lines (27 loc) · 890 Bytes
/
ci.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
name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --no-default-features --verbose
- run: cargo build --no-default-features --features macros --verbose
- run: cargo build --no-default-features --features tracing --verbose
- run: cargo build --no-default-features --features remote --verbose
- run: RUSTFLAGS="--cfg tokio_unstable" cargo build --verbose
- run: cargo test --features remote --verbose
- run: cargo clippy --features remote