Skip to content

Commit

Permalink
Be explicit about expected names
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Sep 13, 2024
1 parent 3c5cdcd commit 52ae847
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: '[[ "${output}" == "${expected}" ]] || exit 1'
env:
output: ${{ steps.job.outputs.name }}
expected: ${{ github.job }}
expected: test-default-name # ${{ github.job }}
- name: Test job ID
run: |
[[ "${job_id}" =~ ^[0-9]+$ ]] || exit 1
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
run: '[[ "${output}" == "${expected}" ]] || exit 1'
env:
output: ${{ steps.job.outputs.name }}
expected: test-empty-name
expected: test-empty-name # ${{ github.job }}

test-null-name:
name: null
Expand All @@ -74,7 +74,7 @@ jobs:
run: '[[ "${output}" == "${expected}" ]] || exit 1'
env:
output: ${{ steps.job.outputs.name }}
expected: ${{ github.job }}
expected: test-null-name # ${{ github.job }}

test-false-name:
name: false
Expand All @@ -89,7 +89,7 @@ jobs:
run: '[[ "${output}" == "${expected}" ]] || exit 1'
env:
output: ${{ steps.job.outputs.name }}
expected: false
expected: false # ${{ github.job }}

test-matrix:
name: Matrix
Expand Down

0 comments on commit 52ae847

Please sign in to comment.