Skip to content

Update Github Actions to run on PRs and push to master. #4

Update Github Actions to run on PRs and push to master.

Update Github Actions to run on PRs and push to master. #4

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: go test -v ./...