build(deps): bump github.com/antchfx/htmlquery from 1.3.2 to 1.3.3 #754
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 | |
- name: Setup Go Environment | |
uses: actions/setup-go@v5 | |
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/action-misspell@v1.23.0 | |
- 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) |