Go #1859
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
--- | |
# This workflow is dangerous and should be handled with great care to avoid security problems. | |
# See the warning at conform-pr.yml. | |
name: Go | |
on: | |
push: | |
branches: | |
- main | |
pull_request_target: | |
types: | |
- labeled | |
- unlabeled # if GitHub Actions stuck, add and remove "not ready" label to force rebuild | |
- opened | |
- reopened | |
- synchronize | |
schedule: | |
- cron: "12 2 * * *" | |
env: | |
GOPATH: /home/runner/go | |
GOCACHE: /home/runner/go/cache | |
GOLANGCI_LINT_CACHE: /home/runner/go/cache/lint | |
GOMODCACHE: /home/runner/go/mod | |
GOPROXY: https://proxy.golang.org | |
GOTOOLCHAIN: local | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CONFORM_TOKEN: ${{ secrets.CONFORM_TOKEN }} # for tests; repo-scoped GITHUB_TOKEN is not enough to query org-level projects | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
# Do not remove `trust` label check. | |
# See the warning at conform-pr.yml. | |
if: > | |
github.event_name != 'pull_request_target' || | |
( | |
!contains(github.event.pull_request.labels.*.name, 'not ready') && | |
contains(github.event.pull_request.labels.*.name, 'trust') | |
) | |
steps: | |
- name: Checkout code | |
if: github.event_name != 'pull_request_target' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout pull request code | |
if: github.event_name == 'pull_request_target' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Go | |
uses: ./setup-go | |
- name: Run tests | |
run: go test -race -count=1 ./... | |
- name: Check dirty | |
run: | | |
git status | |
git diff --exit-code | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-22.04 | |
# Do not remove `trust` label check. | |
# See the warning at conform-pr.yml. | |
if: > | |
github.event_name != 'pull_request_target' || | |
( | |
!contains(github.event.pull_request.labels.*.name, 'not ready') && | |
contains(github.event.pull_request.labels.*.name, 'trust') | |
) | |
steps: | |
- name: Checkout code | |
if: github.event_name != 'pull_request_target' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout pull request code | |
if: github.event_name == 'pull_request_target' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Go | |
uses: ./setup-go | |
with: | |
cache-key: lint | |
- name: Run linters | |
uses: ./linters |