Skip to content

chore: split generate.go file #271

chore: split generate.go file

chore: split generate.go file #271

Workflow file for this run

---
name: development
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
qa:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: "^1.21.2"
- name: Setup workspace
run: cp go.work.dist go.work
- name: Download golangci-lint installer
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh -o /tmp/install-golangci-lint.sh
- name: Install golangci-lint
run: sh /tmp/install-golangci-lint.sh -b /usr/local/bin v1.54.2
- name: Lint Go files
run: ./scripts/lint-golang.sh
- name: Run tests
run: ./scripts/test.sh
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- name: Build binaries
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: '1.21.2'
args: release --debug --snapshot --clean
env:
GO_VERSION: "1.21.2"