File tree Expand file tree Collapse file tree 2 files changed +23
-26
lines changed Expand file tree Collapse file tree 2 files changed +23
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
CARGO_TERM_COLOR : always
11
11
12
12
jobs :
13
- build :
13
+ fmt :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
17
- - name : Fetch & maybe update Cargo.lock
18
- run : cargo fetch --locked
19
- - name : Build
20
- run : cargo build --verbose
21
- - name : Run tests
22
- run : cargo test --verbose
16
+ - uses : actions/checkout@v3
17
+ - uses : dtolnay/rust-toolchain@stable
18
+ with :
19
+ components : rustfmt
20
+ - uses : DavidAnson/markdownlint-cli2-action@v9
21
+ with :
22
+ globs : " exercises/**/*.md"
23
+ - name : Run cargo fmt
24
+ run : |
25
+ cargo fmt --all -- --check
26
+ test :
27
+ runs-on : ${{ matrix.os }}
28
+ strategy :
29
+ matrix :
30
+ os : [ubuntu-latest, windows-latest, macOS-latest]
31
+ steps :
32
+ - uses : actions/checkout@v3
33
+ - uses : dtolnay/rust-toolchain@stable
34
+ - uses : swatinem/rust-cache@v2
35
+ - name : Run cargo test
36
+ run : |
37
+ cargo test
You can’t perform that action at this time.
0 commit comments