Skip to content

Add CI/CD pipeline

Add CI/CD pipeline #2

Workflow file for this run

name: Run Tests
on: push
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: 'go.mod'
- name: Run Tests
run: make test