Skip to content

Fix CI workflows and refine README #27

Fix CI workflows and refine README

Fix CI workflows and refine README #27

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
name: Test (Ubuntu)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download dependencies
run: go mod download
- name: Run tests
run: make test