Skip to content

Commit

Permalink
fix(golang-rewrite): update detect-changes logic for Golang tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratus3D committed Feb 13, 2024
1 parent de330df commit ac2fc00
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,18 @@ jobs:
- 'asdf.*'
- 'defaults'
- 'help.txt'
go:
- '.github/workflows/**'
- '**/*.go'
- '*.go'
- 'scripts/**'
- '.tool-versions'
- 'asdf.*'
- 'defaults'
test-golang:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.cli == 'true' }}
if: ${{ needs.detect-changes.outputs.go == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ac2fc00

Please sign in to comment.