golang-ci #74
This file contains hidden or 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: golang-ci | |
| on: | |
| # Trigger the workflow on push or pull request, | |
| # but only for the main branch | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: 1.24 | |
| - name: remove dirs | |
| run: rm -rf example test | |
| - name: Test | |
| run: go mod vendor && go test -v ./... | |
| lint: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: golangci/golangci-lint:v2.4.0 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: golangci-lint | |
| run: golangci-lint run --modules-download-mode=mod | |
| env: | |
| GOLANGCI_LINT_RUN_BUILDVCS: false # 使用环境变量 | |