should check error before access rule #128
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Run go mod tidy for gostyle | |
run: go mod tidy | |
- name: Run lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
fail_on_error: true | |
golangci_lint_flags: --timeout=5m | |
- name: Run gostyle | |
uses: k1LoW/gostyle-action@v1 | |
with: | |
fail-on-error: true | |
config-file: .gostyle.yml | |
- name: Run tests | |
run: make ci | |
- name: Run octocov | |
uses: k1LoW/octocov-action@v0 |