Skip to content

Merge pull request #6 from natewong1313/symlinks #54

Merge pull request #6 from natewong1313/symlinks

Merge pull request #6 from natewong1313/symlinks #54

Workflow file for this run

name: Run test suite
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...