Skip to content

Clean up oneOf interface implementation. #647

Clean up oneOf interface implementation.

Clean up oneOf interface implementation. #647

Workflow file for this run

name: build & test
on:
push:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- 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: staticcheck
shell: bash
run: |
make staticcheck
- name: vet
shell: bash
run: |
make vet
- name: fmt
shell: bash
run: |
make fmt