-
Notifications
You must be signed in to change notification settings - Fork 49
49 lines (46 loc) · 1.29 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust: [stable, nightly]
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v2
- name: Set up toolchains
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Check format
if: matrix.rust == 'nightly'
run: cargo fmt --all -- --check
- name: Lints
if: matrix.rust == 'nightly'
run: cargo clippy --all-targets --all-features -- --deny warnings
- name: Build
run: cargo build --workspace --all-targets
- name: Run tests
run: |
cargo test --workspace --all-targets -- --nocapture
cargo test --doc
# Github Action sometimes run out of resources to run benches
# - name: Run benches
# run: cargo bench --workspace --bench compare --bench trace
- name: Run examples
run: |
cargo run --example asynchronous
cargo run --example synchronous
cargo run --example get_started
cargo run --package test-statically-disable