-
Notifications
You must be signed in to change notification settings - Fork 161
40 lines (38 loc) · 906 Bytes
/
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
name: Rust
on: [ push, pull_request ]
jobs:
rust:
runs-on: ubuntu-20.04
strategy:
matrix:
toolchain:
- "1.65" # MSRV
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Toolchain version
run: |
cargo -vV
rustc -vV
- name: Build
run: |
cargo build
- name: Run tests
run: |
cargo test --features dates
- name: Install rustfmt
uses: dtolnay/rust-toolchain@master
if: ${{ matrix.toolchain == 'stable' }}
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt
- name: Format checks
if: ${{ matrix.toolchain == 'stable' }}
run: |
cargo fmt -- --check