-
Notifications
You must be signed in to change notification settings - Fork 143
107 lines (84 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: CI
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 1 * * *'
jobs:
main:
name: Main
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
components: clippy
# Do *not* use `--all-features` here, as the optional dependencies take a
# long time to build, and will be tested in the "examples" job anyway
- name: Run tests
run: cargo test --workspace --all-targets
- name: Check Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
# Please keep this in sync with `publish-docs.yml`
documentation:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
# Documentation build uses `git describe` which requires history
fetch-depth: 0
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
components: clippy
- name: Build documentation
run: cd docs && make -j$(nproc)
- name: Check Clippy
run: cd docs && cargo clippy --all-targets -- -D warnings
doctest:
name: Doctest
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
- name: Doctest
run: cd doctest && cargo test
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
# Nightly rustfmt is needed for the `imports_granularity` option
toolchain: nightly
profile: minimal
override: true
components: rustfmt
- name: Check formatting
run: |
cargo fmt -- --check
(cd docs && cargo fmt -- --check)
# trybuild harnesses are technically not part of the Cargo project, so
# need to be checked separately
rustfmt --check maud/tests/warnings/*.rs