Skip to content

nit

nit #86

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
permissions: read-all
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: |
go install gotest.tools/[email protected]
go test -coverprofile=coverage.out -covermode=atomic -cover -json ./... | gotestsum --junitfile tests.xml
- name: Upload test results to Codecov
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: tests.xml
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out