Skip to content

Merge pull request #9 from johnlettman/devel #50

Merge pull request #9 from johnlettman/devel

Merge pull request #9 from johnlettman/devel #50

Workflow file for this run

on:
push:
branches: [ main, devel ]
pull_request:
branches: [ main ]
paths-ignore:
- "**/*.md"
- "**/*.py"
- "LICENSE"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
uses: robherley/go-test-action@v0
with:
testArguments: -covermode=atomic -coverprofile=coverage.out ./...
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}