Skip to content

Commit

Permalink
F6
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 14, 2024
1 parent e4748de commit 7e4ac4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
env:
TOX_SKIP_MISSING_INTERPRETERS: False
# Rich (pip)
FORCE_COLOR: ${{ matrix.color || 1 }}
FORCE_COLOR: ${{ !matrix.color && 1 || 0 }}
# Tox
PY_COLORS: 1
# Mypy (see https://github.com/python/mypy/issues/7771)
Expand All @@ -142,8 +142,8 @@ jobs:
- uses: actions/checkout@v4
- run: |
echo "matrix.color: ${{ matrix.color }}"
echo "matrix.color != 'false': ${{ matrix.color != 'false' }}"
echo "matrix.color != 'false' && 1 || 0: ${{ matrix.color != 'false' && '1' || '0' }}"
echo "matrix.color != 'false': ${{ !matrix.color }}"
echo "matrix.color != 'false' && 1 || 0: ${{ !matrix.color && 1 || '0' }}"
- name: Debug build
if: ${{ matrix.debug_build }}
Expand Down

0 comments on commit 7e4ac4b

Please sign in to comment.