Skip to content

Commit

Permalink
fix short test
Browse files Browse the repository at this point in the history
  • Loading branch information
ivvist committed Nov 17, 2024
1 parent a2b36f3 commit 0ea4e01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_reuse_go_cas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
organization: 'untillpro,heeus'
token: ${{ secrets.reporeading_token }}
codecov-token: ${{ secrets.codecov_token }}
short-test: ${{ secrets.short_test }}
short-test: ${{ inputs.short_test }}
ignore-build: ${{ inputs.ignore_build }}
run-mod-tidy: false
env:
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17346,7 +17346,7 @@ async function run() {
const ignoreCopyright = core.getInput('ignore-copyright') === 'true'
const ignoreRunBuild = core.getInput('ignore-build')
const testfolder = core.getInput('test-folder')
const shorttest = core.getInput ('short-test') === 'true'
const shorttest = core.getInput ('short-test')

const repositoryOwner = repository.split('/')[0] ||
github.context.payload && github.context.payload.repository && github.context.payload.repository.owner && github.context.payload.repository.owner.login
Expand Down Expand Up @@ -17417,7 +17417,7 @@ async function run() {
}

// run Codecov / test
core.info(codecovToken)

if ( codecovToken.length > 0 ) {
core.startGroup('Codecov')
await execute('go install github.com/heeus/gocov@latest')
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function run() {
const ignoreCopyright = core.getInput('ignore-copyright') === 'true'
const ignoreRunBuild = core.getInput('ignore-build')
const testfolder = core.getInput('test-folder')
const shorttest = core.getInput ('short-test') === 'true'
const shorttest = core.getInput ('short-test')

const repositoryOwner = repository.split('/')[0] ||
github.context.payload && github.context.payload.repository && github.context.payload.repository.owner && github.context.payload.repository.owner.login
Expand Down Expand Up @@ -104,7 +104,7 @@ async function run() {
}

// run Codecov / test
core.info(codecovToken)

if ( codecovToken.length > 0 ) {
core.startGroup('Codecov')
await execute('go install github.com/heeus/gocov@latest')
Expand Down

0 comments on commit 0ea4e01

Please sign in to comment.