Skip to content

To lower

To lower #8

Workflow file for this run

name: go
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.4"
- name: Test
run: make test
- name: Build
run: make build