Skip to content

ci: Run format and test on Pull Request #103

ci: Run format and test on Pull Request

ci: Run format and test on Pull Request #103

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Test
run: "go test -v ."
- name: Build
run: "go build -v ."