Skip to content

Commit

Permalink
F
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 14, 2024
1 parent e966557 commit 24db33f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ jobs:
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 "---"
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 }}"
Expand Down

0 comments on commit 24db33f

Please sign in to comment.