Skip to content

ci: add workflow for checking unresolved auto-squash commits #9

ci: add workflow for checking unresolved auto-squash commits

ci: add workflow for checking unresolved auto-squash commits #9

Workflow file for this run

name: "Go (Test / Vet / Build)"
on:
push:
pull_request:
jobs:
test:
name: "Go (Test / Vet / Build)"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-go@v4"
with:
go-version: "1.22.0"
- name: "vet"
run: "make lint"
- name: "test"
run: "make test"
- name: "build"
run: "make build"