Skip to content

Commit

Permalink
fix(CI): string quote negation
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 3, 2023
1 parent cd372ad commit 8f7a3a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,18 @@ jobs:
test:
runs-on: ubuntu-latest
needs: [set-variables]
if: ${{ !needs.set-variables.outputs.skip_ci && !needs.set-variables.outputs.skip_tests }}
if: ${{ '!needs.set-variables.outputs.skip_ci' && '!needs.set-variables.outputs.skip_tests' }}
strategy:
matrix:
python_version: ['3.10']

steps:
- name: Check Variables
run: |
echo "SKIP_CI=${{ needs.set-variables.outputs.skip_ci}}"
echo "SKIP_TESTS=${{ needs.set-variables.outputs.skip_tests}}"
echo "DEBUG=${{ needs.set-variables.outputs.debug}}"
echo "MODE=${{ needs.set-variables.outputs.debug}}"
echo "SKIP_CI=${{ needs.set-variables.outputs.skip_ci }}"
echo "SKIP_TESTS=${{ needs.set-variables.outputs.skip_tests }}"
echo "DEBUG=${{ needs.set-variables.outputs.debug }}"
echo "MODE=${{ needs.set-variables.outputs.mode }}"
- name: Checkout code
uses: actions/checkout@v4

Expand Down

0 comments on commit 8f7a3a3

Please sign in to comment.