We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1c7a13 commit a487b08Copy full SHA for a487b08
.github/workflows/publish.yaml
@@ -7,12 +7,6 @@ jobs:
7
copy-go:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
11
- - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
12
- with:
13
- go-version: 1.23.x
14
- - name: Check package is correct
15
- run: make test
16
- name: Copy generated Go
17
uses: andstor/copycat-action@c2b0316e9ab883478a4a7d40a4fcb03d17f281aa
18
with:
.github/workflows/test.yaml
@@ -0,0 +1,13 @@
1
+name: Test
2
+on:
3
+ pull_request:
4
+jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
+ - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
+ with:
+ go-version: 1.23.x
+ - name: Check package is correct
+ run: make test
0 commit comments