Skip to content

Commit fc4745f

Browse files
committed
fix: change prepare step
Signed-off-by: Alessio Pragliola <[email protected]>
1 parent 86f9098 commit fc4745f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,18 @@ on:
1414
- ".github/dependabot.yml"
1515
- "docs/**"
1616
jobs:
17+
prepare:
18+
uses: ./.github/workflows/prepare.yml
1719
build:
1820
runs-on: ubuntu-latest
1921
steps:
20-
- uses: actions/checkout@v4
21-
- uses: ./.github/workflows/prepare.yml
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
- name: Setup Go
25+
uses: actions/setup-go@v5
26+
with:
27+
go-version: "1.24"
28+
- name: Build
29+
run: make build/compile
2230
- name: Unit tests
2331
run: make test-cover

0 commit comments

Comments
 (0)