Skip to content

Add a badge to the readme showing the test status. #1

Add a badge to the readme showing the test status.

Add a badge to the readme showing the test status. #1

Workflow file for this run

name: tests
# run `go test ./...` on every push and every pull request
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Install dependencies
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...