We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b6ce0 commit 190f49fCopy full SHA for 190f49f
.github/workflows/ci.yaml
@@ -1,6 +1,10 @@
1
name: CI
2
on: [push, pull_request]
3
4
+env:
5
+ CARGO_TERM_COLOR: always
6
+ RUST_BACKTRACE: full
7
+
8
jobs:
9
unit-test:
10
name: unit tests
@@ -10,7 +14,7 @@ jobs:
14
fail-fast: false
11
15
runs-on: ${{ matrix.os }}
12
16
steps:
13
- - uses: actions/checkout@v2
17
+ - uses: actions/checkout@v3
18
- name: Install Rust toolchain
19
run: |
20
rustup set profile minimal
@@ -26,7 +30,7 @@ jobs:
26
30
name: clippy and rustfmt
27
31
runs-on: ubuntu-latest
28
32
29
33
34
- name: Install tools
35
36
0 commit comments