Skip to content

Commit

Permalink
Fix codecov failure due to undeclared secret use
Browse files Browse the repository at this point in the history
  • Loading branch information
robtaylor committed Sep 30, 2024
1 parent a614fc8 commit 0192719
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/execute-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
workpath:
required: true
type: string
secrets:
CODECOV_TOKEN:
required: true

jobs:
test:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
with:
os: "ubuntu-latest"
workpath: "/home/runner/work/doorstop/doorstop"
secrets:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Test:
uses: ./.github/workflows/execute-tests.yml
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ jobs:
with:
os: "macos-latest"
workpath: "/Users/runner/work/doorstop/doorstop"
secrets:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
2 changes: 2 additions & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ jobs:
basepath: 'D:\'
os: "windows-latest"
workpath: 'C:\a\doorstop\doorstop'
secrets:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

0 comments on commit 0192719

Please sign in to comment.