Skip to content

Merge pull request #27 from seanf/patch-1 #16

Merge pull request #27 from seanf/patch-1

Merge pull request #27 from seanf/patch-1 #16

Workflow file for this run

# This workflow will build a golang project
# For more information see:
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
# https://github.com/marketplace/actions/coveralls-github-action
name: Go
on:
push:
branches: [ v2 ]
pull_request:
branches: [ v2 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.24.x
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Set up Mage
run: go install tool
- name: Test
run: mage build coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage.out
format: golang
debug: false