fix: typo #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Workflow - Push on origin/main | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
go-lint: | ||
Check failure on line 9 in .github/workflows/push.main.yaml GitHub Actions / Workflow - Push on origin/mainInvalid workflow file
|
||
uses: ./.github/workflows/go.lint.action.yaml | ||
with: | ||
go_version: '1.21.4' | ||
go-test: | ||
uses: ./.github/workflows/go.test.action.yaml | ||
with: | ||
go_version: '1.21.4' | ||
docker-build-push: | ||
needs: [ go-lint, go-test ] | ||
uses: ./.github/workflows/docker.build-push.action.yaml |