feat: support go1.21 build #604
Workflow file for this run
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: Code Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "**/*.go" | |
- "go.mod" | |
- "go.sum" | |
- ".github/workflows/code.yml" | |
jobs: | |
lint: | |
name: Code Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v4 | |
# https://github.com/reviewdog/reviewdog/issues/1158 | |
# Permissions need to match container user | |
- name: Setup Go Environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
id: go | |
- name: "Give Permissions" | |
run: | | |
sudo chown -R root $GITHUB_WORKSPACE | |
- name: Spelling Check | |
uses: reviewdog/[email protected] | |
- name: Revive Action | |
uses: morphy2k/revive-action@v2 | |
- name: "Restore Permissions" | |
run: | | |
sudo chown -R $(id -u) $GITHUB_WORKSPACE | |
- name: Check formatting | |
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1) |