Skip to content

Add a step for Codecov to GitHub Actions workflow. #94

Add a step for Codecov to GitHub Actions workflow.

Add a step for Codecov to GitHub Actions workflow. #94

Workflow file for this run

name: Build and Test on Pull Request
on:
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
uses: ./.github/actions/test
with:
codecov_token: ${{ secrets.CODECOV_TOKEN }}