Skip to content

Commit

Permalink
Allow use of deprecated go/ast package for now
Browse files Browse the repository at this point in the history
Linter was complaining about use of the `go/ast` package. Disabling the check
for the moment as this will require extra changes.
  • Loading branch information
rafaeljusto committed Oct 17, 2024
1 parent 6b7e63d commit 03b83f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4

- name: Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
only-new-issues: true

Expand All @@ -22,9 +22,9 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: '1.23'

- name: Test
run: |
Expand Down
2 changes: 2 additions & 0 deletions goutil/goutil.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// Package goutil provides functions to work with Go source files.
//
//nolint:staticcheck
package goutil // import "github.com/teamwork/utils/v2/goutil"

import (
Expand Down

0 comments on commit 03b83f5

Please sign in to comment.