unfix a megalinter bugfix #135
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: Test | |
"on": [push] | |
permissions: read-all | |
jobs: | |
test: | |
name: Test on push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.18 | |
- uses: golangci/[email protected] | |
- name: Get test dependencies | |
run: | | |
go mod download | |
- name: go test | |
run: go test ./cmd/gocate |