Skip to content

Task runner

Task runner #29

Workflow file for this run

name: Code Coverage Report
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.4'
- name: Run Tests
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}