44 lines
971 B
YAML
44 lines
971 B
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- main
|
|
|
|
jobs:
|
|
|
|
main:
|
|
name: Main Process
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GO_VERSION: stable
|
|
GOLANGCI_LINT_VERSION: v1.64.4
|
|
CGO_ENABLED: 0
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Check and get dependencies
|
|
run: |
|
|
go mod download
|
|
go mod tidy
|
|
git diff --exit-code go.mod
|
|
git diff --exit-code go.sum
|
|
|
|
# https://golangci-lint.run/usage/install#other-ci
|
|
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
|
|
run: |
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
|
|
golangci-lint --version
|
|
|
|
- name: Make
|
|
run: make
|