Skip to content

Commit 66cf143

Browse files
committed
feat: commit go.work
1 parent deeb799 commit 66cf143

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/development.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
uses: actions/setup-go@v5
2222
with:
2323
go-version: ^1.22.2
24-
- name: Setup workspace
25-
run: cp go.work.dist go.work
2624
- name: Download golangci-lint installer
2725
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh -o /tmp/install-golangci-lint.sh
2826
- name: Install golangci-lint

.github/workflows/prerelease.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
uses: actions/setup-go@v5
2424
with:
2525
go-version: ^1.22.2
26-
- name: Setup workspace
27-
run: cp go.work.dist go.work
2826
- name: Run GoReleaser for release
2927
uses: goreleaser/goreleaser-action@v5
3028
with:

.github/workflows/release.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
uses: actions/setup-go@v5
2424
with:
2525
go-version: ^1.22.2
26-
- name: Setup workspace
27-
run: cp go.work.dist go.work
2826
- name: Log in to Docker Hub
2927
if: ${{ !contains(github.ref_name, '-') }}
3028
uses: docker/login-action@v3

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ coverage/
66
bin/
77
dist/
88
vendor/
9-
go.work

go.work

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
go 1.22
2+
3+
use (
4+
.
5+
./tests
6+
)

0 commit comments

Comments
 (0)