Skip to content

Tests for 37/merge by @renbou #16

Tests for 37/merge by @renbou

Tests for 37/merge by @renbou #16

Workflow file for this run

name: Tests
run-name: Tests for ${{ github.ref_name }} by @${{ github.actor }}
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
cover:
runs-on: ubuntu-latest
name: Test & upload coverage
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests and collect coverage
run: make coverpkg FLAGS="-coverpkg ./..."
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}