Skip to content

Commit 2744186

Browse files
committed
adding protoc-gen-go
1 parent b19eb49 commit 2744186

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/codegen_check.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,20 @@ permissions: read-all
1616

1717
name: Code Generation Check
1818
jobs:
19+
warmup:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: jdx/mise-action@0c39a522dfbced3ed83924152c45804a71ce216f # v2.0.4
23+
with:
24+
experimental: true
1925
check-codegen:
2026
strategy:
2127
matrix:
2228
target: [ mocks, protobuf ]
29+
fail-fast: false # Don't cancel running checks because one fails
2330
runs-on: ubuntu-latest
31+
needs:
32+
- warmup
2433
steps:
2534
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
2635
with:

.mise.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ watchexec = "latest"
77
"pipx:pre-commit" = "latest"
88
protoc = "latest"
99
mockery = "latest"
10+
protoc-gen-go = "latest"
1011

1112
[settings]
1213
experimental = true

0 commit comments

Comments
 (0)