Skip to content

build(deps): bump actions/checkout from 5 to 6 #651

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #651

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: staticcheck
shell: bash
run: |
make staticcheck
- name: vet
shell: bash
run: |
make vet
- name: fmt
shell: bash
run: |
make fmt