Skip to content

Merge pull request #5 from hutcho66/negative-tests #21

Merge pull request #5 from hutcho66/negative-tests

Merge pull request #5 from hutcho66/negative-tests #21

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
name: Go
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Run Test
run: make test
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
coverage-file: ./cover.out
report: true
chart: false
amend: true
reuse-go: true