-
Notifications
You must be signed in to change notification settings - Fork 149
60 lines (56 loc) · 1.65 KB
/
build.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
59
60
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain: [stable, beta, nightly]
steps:
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- name: Build
run: cargo build --verbose
continue-on-error: ${{ matrix.toolchain != 'stable' }}
- name: Run tests
run: cargo test --verbose
continue-on-error: ${{ matrix.toolchain != 'stable' }}
- name: Run tests (vendored-openssl)
run: cargo test --features vendored-openssl --verbose
continue-on-error: ${{ matrix.toolchain != 'stable' }}
clippy:
name: clippy (ubuntu-latest, stable)
runs-on: ubuntu-latest
steps:
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Checkout sources
uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- name: Cargo Clippy
run: cargo clippy -- -D warnings -A deprecated
fmt:
name: fmt (ubuntu-latest, stable)
runs-on: ubuntu-latest
steps:
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- name: Checkout sources
uses: actions/checkout@v2
- name: Check Formatting
run: cargo fmt --all -- --check