build(deps): bump github.com/antchfx/htmlquery from 1.3.4 to 1.3.5 #922
Workflow file for this run
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: 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@v5 | |
| - name: Setup Go Environment | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| id: go | |
| # https://github.com/reviewdog/reviewdog/issues/1158 | |
| # Permissions need to match container user | |
| - 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) |