This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (80 loc) · 2.45 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
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
name: Rust
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '11 7 * * 1,4'
env:
RUSTFLAGS: -Dwarnings
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Run cargo check
run: |
cargo check --all --tests
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Run cargo fmt
run: |
cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run cargo clippy
run: |
cargo clippy --tests --examples
docs:
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Run rustdoc
run: |
cargo doc --no-deps
feature-check:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-hack
# Note that bare "--no-default-features" isn't supported, you must pick a backend!
# Unfortunately just selecting the "cli" feature also runs into this problem. really
# we want to express "you must choose at least one of 'cargo-projects' or 'npm-projects'"
# but I don't see a good way of doing this.
#
# As a workaround I'm just going to make `check` not use 'cli', making this effectively
# testing of the library. The subsequent deeper tests hit the CI modes so we still have
# solid coverage.
- name: Run cargo hack powerset
run: |
cargo hack check --feature-powerset --no-dev-deps --exclude-no-default-features --skip=cli
os-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
# note that bare "--no-default-features" isn't supported, you must pick a backend!
feature-flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Run cargo test
run: |
cargo test ${{ matrix.feature-flags }}