minor(deps): update module golang.org/x/sync to v0.6.0 (#96) #8
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: go-lint-test | |
"on": | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
id: source | |
uses: actions/checkout@v4 | |
- name: Setup golang | |
id: golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.21 | |
- name: install golangci | |
uses: giantswarm/[email protected] | |
with: | |
binary: "golangci-lint" | |
version: "1.54.1" | |
download_url: "https://github.com/golangci/golangci-lint/releases/download/v${version}/golangci-lint-${version}-linux-amd64.tar.gz" | |
tarball_binary_path: "*/${binary}" | |
smoke_test: "${binary} --version" | |
- name: Run generate | |
id: generate | |
run: make generate | |
- name: Run vet | |
id: vet | |
run: make vet | |
- name: Run lint | |
id: lint | |
run: make lint | |
- name: Run build | |
id: build | |
run: make build | |
- name: Run test | |
id: test | |
run: make test | |
... |