Skip to content

Commit 705d045

Browse files
committed
fixup! Remove hardcoded Go version and use go.mod for versioning in workflows
1 parent ceb9b6f commit 705d045

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.github/workflows/checks.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,3 @@ jobs:
3737
go mod tidy
3838
git diff --color --exit-code
3939
40-
- name: Install Task
41-
uses: arduino/setup-task@v2
42-
with:
43-
version: 3.x
44-
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/go-test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,10 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v3
1515

16-
- name: Install Task
17-
uses: arduino/setup-task@v2
18-
with:
19-
version: 3.x
20-
repo-token: ${{ secrets.GITHUB_TOKEN }}
21-
2216
- name: Set up Go
2317
uses: actions/setup-go@v5
2418
with:
2519
go-version-file: go.mod
2620

2721
- name: Run tests
28-
run: task test
22+
run: go tool task test

0 commit comments

Comments
 (0)