-
Notifications
You must be signed in to change notification settings - Fork 24
49 lines (46 loc) · 1.25 KB
/
main.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: Build and test
on: [push, pull_request]
jobs:
test:
name: Unit tests on ${{ matrix.rust }} ${{ matrix.flags}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [stable, nightly, 1.65.0]
flags:
- ""
- "--no-default-features"
- "--no-default-features --features rustls"
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- name: Run unit tests
run: cargo test --lib --verbose ${{ matrix.flags }}
rustfmt:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
rustup component add rustfmt
- run: cargo fmt -- --check
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup update stable --no-self-update
rustup default stable
- name: Run doc tests
run: cargo test --doc --verbose
- name: Build the docs
run: cargo doc --verbose