feat: enable relative path ssh URL #47
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: reviewdog | |
on: [pull_request] | |
jobs: | |
typos: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: crate-ci/typos@v1.13.10 | |
staticcheck: | |
name: staticcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: staticcheck | |
uses: reviewdog/action-staticcheck@v1 | |
with: | |
reporter: github-pr-review | |
level: warning | |
misspell: | |
name: misspell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: misspell | |
uses: reviewdog/action-misspell@v1 | |
with: | |
reporter: github-pr-review | |
level: warning | |
locale: "US" | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: reviewdog/action-actionlint@v1 | |
with: | |
reporter: github-pr-review |