Skip to content

Commit

Permalink
F2
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 14, 2024
1 parent 24db33f commit 8156df2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,16 @@ jobs:
PYTEST_ADDOPTS: --color=yes

steps:
- uses: actions/checkout@v4
- run: |
echo "x: ${{ startsWith(matrix.os, 'windows-') }}"
echo "y: ${{ matrix.toxenv == 'py' }}"
echo "xy: ${{ startsWith(matrix.os, 'windows-') && matrix.toxenv == 'py' }}"
echo "!xy: ${{ !(startsWith(matrix.os, 'windows-') && matrix.toxenv == 'py') }}
echo "!xy: ${{ !(startsWith(matrix.os, 'windows-') && matrix.toxenv == 'py') }}"
echo "---"
echo "matrix.no_color: ${{ matrix.no_color }}"
echo "!matrix.no_color': ${{ !matrix.no_color }}"
echo "!matrix.no_color && 1 || 0: ${{ !matrix.no_color && 1 || 0 }}"
- uses: actions/checkout@v4

- name: Debug build
if: ${{ matrix.debug_build }}
Expand Down

0 comments on commit 8156df2

Please sign in to comment.