Skip to content

Update to omicron afb2e9a #342

Update to omicron afb2e9a

Update to omicron afb2e9a #342

Workflow file for this run

name: build & test
on:
push:
branches: main
pull_request:
branches: main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.x"
- 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