We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f9098 commit fc4745fCopy full SHA for fc4745f
.github/workflows/build.yml
@@ -14,10 +14,18 @@ on:
14
- ".github/dependabot.yml"
15
- "docs/**"
16
jobs:
17
+ prepare:
18
+ uses: ./.github/workflows/prepare.yml
19
build:
20
runs-on: ubuntu-latest
21
steps:
- - uses: actions/checkout@v4
- - 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
30
- name: Unit tests
31
run: make test-cover
0 commit comments