Skip to content

Fix uint64 representation. #848

Fix uint64 representation.

Fix uint64 representation. #848

Workflow file for this run

name: build & test
on:
push:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: build
shell: bash
run: |
make build
- name: test
shell: bash
run: |
make test
- name: lint
shell: bash
run: |
make lint
- name: generate
shell: bash
run: |
make generate
if ! git diff --exit-code; then
echo 'Generated files are out of date. Run `make generate` and commit the result.'
exit 1
fi