Here’s what worked for me.
- The list of files to be skipped is not included in the main
CI.ymlfile but included in a separate yml file with theignoretag. Here’s my specific example:
ignore:
- "src/proto*.jl"
- "src/plotsForPaper.jl"
- "src/early_tests_of_bases.jl"
- "src/convertStrin.jl"
- "src/convertVaspData.jl"
- This file is named
codecov.yml(not.codecov.yml) - This file is placed in the root folder of the repo, not in
.github/workflows.