Skip to content

ci(tools): update build tools (major) #268

ci(tools): update build tools (major)

ci(tools): update build tools (major) #268

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: general
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v5
- name: Setup golang
id: golang
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run generate
id: generate
run: make generate
- name: Run vet
id: vet
run: make vet
- name: Run staticcheck
id: staticcheck
run: make staticcheck
- name: Run lint
id: lint
run: make lint
- name: Run build
id: build
run: make build
- name: Run test
id: test
run: make test
- name: Coverage report
id: codacy
if: github.ref == 'refs/heads/master'
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.out
force-coverage-parser: go
...