Skip to content

Modify Unit Tests GitHub Actions workflow to get code coverage test reports #1

Modify Unit Tests GitHub Actions workflow to get code coverage test reports

Modify Unit Tests GitHub Actions workflow to get code coverage test reports #1

Workflow file for this run

name: Run tests and upload coverage

Check failure on line 2 in .github/workflows/codecov.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/codecov.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on: [push, pull_request]]
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -coverprofile=coverage.txt
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}