Skip to content

refactor: internalize tools #6

refactor: internalize tools

refactor: internalize tools #6

Workflow file for this run

---
name: Go Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: 'true'
- uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...