Skip to content

🧪✨ Test coverage ✨🧪 #276

🧪✨ Test coverage ✨🧪

🧪✨ Test coverage ✨🧪 #276

Workflow file for this run

name: Daily Test Report
on:
workflow_call:
workflow_dispatch: # Runs on manual calls
schedule:
- cron: "0 0 * * *" # Runs automatically every day
jobs:
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
cache: true
- name: Run all unit tests.
run: make test-coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3