Merge pull request #22 from asdf-vm/tb/workflow-fix

fix(golang-rewrite): update detect-changes logic for Golang tests
This commit is contained in:
Trevor Brown 2024-02-12 20:23:29 -05:00 committed by Trevor Brown
commit f0cb04c91a

View File

@ -34,10 +34,12 @@ jobs:
- 'asdf.*'
- 'defaults'
- 'help.txt'
go:
- '**.go'
test-golang:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.cli == 'true' }}
if: ${{ needs.detect-changes.outputs.go == 'true' || needs.detect-changes.outputs.cli == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4