Skip to content

Commit 0861304

Browse files
author
Peter Somkuti
committed
Added codecov action.
1 parent a378242 commit 0861304

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Codecov
2+
on: [push, pull_request]
3+
jobs:
4+
run:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
- name: Set up Julia 1.11.7
10+
uses: julia-actions/setup-julia@v2
11+
with:
12+
version: '1'
13+
- uses: julia-actions/julia-buildpkg@v1
14+
- uses: julia-actions/julia-runtest@v1
15+
- uses: julia-actions/julia-processcoverage@v1
16+
- uses: codecov/codecov-action@v5
17+
env:
18+
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}

0 commit comments

Comments
 (0)