Skip to content

Compaction

Compaction #18

Workflow file for this run

name: Go Test
on:
workflow_dispatch:
push:
branches: [trunk]
pull_request:
branches: [trunk]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Test
run: make test
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Goveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=profile.cov -service=github