Skip to content

chore: update workflow #102

chore: update workflow

chore: update workflow #102

Workflow file for this run

name: "workflow"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: "format"
run: make format
- name: "test"
run: make test
- name: "build"
run: make build