Skip to content

Commit cd52801

Browse files
committed
chore: avoid third-party morphy2k/revive-action
1 parent 906dcef commit cd52801

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,13 @@ jobs:
4040
- name: Check out code into the Go module directory
4141
uses: actions/checkout@v4
4242

43-
- name: Run Revive Action
44-
uses: morphy2k/revive-action@v2
43+
- name: Setup Go and register problem matcher
44+
uses: actions/setup-go@v5
4545
with:
46-
config: revive.toml
47-
path: ./...
46+
go-version: stable
47+
48+
- name: Install revive
49+
run: go install
50+
51+
- name: Run revive
52+
run: revive --config revive.toml ./...

0 commit comments

Comments
 (0)