docs: automated changelog update #452
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: general | |
"on": | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
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.23.0 | |
- 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.event_name != 'pull_request' | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: coverage.out | |
force-coverage-parser: go | |
... |