Skip to content

Add GitHub workflow for running tests. #1

Add GitHub workflow for running tests.

Add GitHub workflow for running tests. #1

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Run test suite
run: go test -v -coverprofile=profile.cov ./...
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: profile.cov