Skip to content

Commit

Permalink
ci: enable codespell
Browse files Browse the repository at this point in the history
Signed-off-by: Radostin Stoyanov <radostin@redhat.com>
  • Loading branch information
rst0git committed Sep 3, 2023
1 parent f8a8197 commit 9836bb1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: true
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: true
- name: codespell
uses: codespell-project/actions-codespell@v2
with:
skip: vendor

gomod:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion memparse.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func printProcessMemoryPages(task task) error {
var compact bool

if outputFilePath != "" {
// Write to ouput to file if --output is specified
// Write output to file if --output is specified
f, err := os.Create(outputFilePath)
if err != nil {
return err
Expand Down

0 comments on commit 9836bb1

Please sign in to comment.