Skip to content

Commit 190f49f

Browse files
committed
enable backtrace and color output in CI
1 parent a5b6ce0 commit 190f49f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: .github/workflows/ci.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: CI
22
on: [push, pull_request]
33

4+
env:
5+
CARGO_TERM_COLOR: always
6+
RUST_BACKTRACE: full
7+
48
jobs:
59
unit-test:
610
name: unit tests
@@ -10,7 +14,7 @@ jobs:
1014
fail-fast: false
1115
runs-on: ${{ matrix.os }}
1216
steps:
13-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1418
- name: Install Rust toolchain
1519
run: |
1620
rustup set profile minimal
@@ -26,7 +30,7 @@ jobs:
2630
name: clippy and rustfmt
2731
runs-on: ubuntu-latest
2832
steps:
29-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3034
- name: Install tools
3135
run: |
3236
rustup set profile minimal

0 commit comments

Comments
 (0)