From 9b0b8e20617dec3184ae9fac82180e8b0132ae62 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 19 Dec 2022 15:31:08 +0100 Subject: [PATCH] GitHub Actions: Set FORCE_COLOR = 1 --- .github/workflows/docs.yml | 3 +++ .github/workflows/strings.yml | 3 +++ .github/workflows/style.yml | 3 +++ .github/workflows/tests.yml | 3 +++ 4 files changed, 12 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2e53aac642..b2b403193f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,6 +17,9 @@ on: permissions: contents: read # to fetch code (actions/checkout) +env: + FORCE_COLOR: 1 + jobs: spelling: name: Spellcheck diff --git a/.github/workflows/strings.yml b/.github/workflows/strings.yml index 5720275844..472c4ffedd 100644 --- a/.github/workflows/strings.yml +++ b/.github/workflows/strings.yml @@ -15,6 +15,9 @@ on: permissions: contents: read # to fetch code (actions/checkout) +env: + FORCE_COLOR: 1 + jobs: compile: runs-on: ubuntu-22.04 diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 2645eb15c8..adb00778ea 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -15,6 +15,9 @@ on: permissions: contents: read # to fetch code (actions/checkout) +env: + FORCE_COLOR: 1 + jobs: isort: name: isort diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 70448a25b4..8c93e57875 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,6 +15,9 @@ on: permissions: contents: read # to fetch code (actions/checkout) +env: + FORCE_COLOR: 1 + jobs: test: runs-on: ubuntu-22.04