Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,24 @@ jobs:
run: make rdu

test-generate:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '1.26'
check-latest: true

- name: Test code generation
run: |
make cleanup-generate
make generate
make rdu

lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout
Expand Down
Loading