Skip to content

Delete .github/workflows/codecov.yml #68

Delete .github/workflows/codecov.yml

Delete .github/workflows/codecov.yml #68

Workflow file for this run

name: CI
on:
push:
branches: [ "add-tests-only" ]
pull_request:
branches: [ "add-tests-only" ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
# This will run on all specified operating systems
- name: Run Tests with Coverage
run: julia --project -e 'using Pkg; Pkg.test(coverage=true)'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.json # Ensure this path is correct and the file exists
fail_ci_if_error: false # Set to false to avoid pipeline failure if upload fails
verbose: true