-
Notifications
You must be signed in to change notification settings - Fork 178
50 lines (45 loc) · 1.15 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
name: Rust
on:
push:
branches: [master]
paths:
- "**.rs"
- "**.toml"
- ".github/workflows/rust.yml"
pull_request:
paths:
- "**.rs"
- "**.toml"
- ".github/workflows/rust.yml"
- "*.md"
env:
RUST_BACKTRACE: short
RUSTFLAGS: -Cdebuginfo=1
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Swatinem/[email protected]
- name: Build
run: cargo build --workspace --all-targets
- name: Run tests
run: cargo test --workspace --all-targets
- name: Run doctests
run: cargo test --workspace --doc
- name: Test features
if: matrix.os != 'windows-latest'
run: cargo test --workspace --all-targets --all-features
- name: Clippy
run: cargo clippy --workspace --no-deps -- -D warnings
- name: Format
run: cargo fmt --all -- --check
- name: Check with no default features
run: cargo check --workspace --no-default-features
env:
RUSTFLAGS: "-D warnings"