Skip to content

Commit

Permalink
Use FORCE_COLORS to enable colored output in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed May 6, 2023
1 parent 658ae57 commit eeeda1c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ defaults:
run:
shell: bash

env:
FORCE_COLOR: "1"

jobs:
verify-app:
name: Verify App Build
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ on:
branches:
- main

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: "1"

jobs:
pre-commit:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pre-commit-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ permissions:
env:
BRANCH_NAME: "autoupdates/pre-commit"
CHANGENOTE_DIR: "./changes"
FORCE_COLOR: "1"

defaults:
run:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/python-package-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ on:
description: "Name of the uploaded artifact; use for artifact retrieval."
value: ${{ jobs.package.outputs.artifact-name }}

env:
FORCE_COLOR: "1"

jobs:
package:
name: Create Python Package
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/towncrier-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ defaults:
run:
shell: bash

env:
FORCE_COLOR: "1"

jobs:
towncrier:
name: Towncrier Checks
Expand Down

0 comments on commit eeeda1c

Please sign in to comment.