Skip to content

Commit

Permalink
*: Fix backwards logic for test -short
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed Nov 4, 2023
1 parent 040622f commit 3bc5ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
env:
TEST_FLAGS: >-
-v=${{ runner.debug && '1' || '0' }}
-short=${{ (github.event-name == 'workflow_dispatch' || github.event.inputs.short-integration-tests) && '1' || '0' }}
-short=${{ (github.event-name == 'workflow_dispatch' && !github.event.inputs.short-integration-tests) && '0' || '1' }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
GUILD_ID: ${{ secrets.GUILD_ID }}
VOICE_ID: ${{ secrets.VOICE_ID }}
Expand Down

0 comments on commit 3bc5ae3

Please sign in to comment.