Skip to content

Commit de41aba

Browse files
committed
ci(actions): Enable color output, supported in GitHub UI
1 parent 188075f commit de41aba

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build
22

33
on: [ push, pull_request ]
44

5+
env:
6+
CARGO_TERM_COLOR: always
7+
58
concurrency:
69
group: ${{ github.workflow }}-${{ github.ref }}
710
cancel-in-progress: true

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
- latest
1111
- v*
1212

13+
env:
14+
CARGO_TERM_COLOR: always
15+
1316
jobs:
1417

1518
ghcr:

.github/workflows/rust_bloat.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Cargo Bloat
22

33
on: [ "pull_request" ]
44

5+
env:
6+
CARGO_TERM_COLOR: always
7+
58
jobs:
69

710
cargo_bloat:

.github/workflows/rust_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Rust Test
22

33
on: [push, pull_request]
44

5+
env:
6+
CARGO_TERM_COLOR: always
7+
58
jobs:
69

710
test:

0 commit comments

Comments
 (0)