Skip to content

Commit 1429841

Browse files
authored
Submit coverage reports to codecov and add badge (#203)
1 parent a941919 commit 1429841

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ jobs:
6767
${{ runner.os }}-
6868
- uses: julia-actions/julia-buildpkg@v1
6969
- uses: julia-actions/julia-runtest@v1
70+
- uses: julia-actions/julia-processcoverage@latest
71+
- uses: codecov/codecov-action@v3
72+
with:
73+
file: lcov.info
7074
test_sysimage:
7175
name: JuliaSyntax sysimage build - ${{ github.event_name }}
7276
runs-on: ubuntu-latest

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/Manifest.toml
22
/tools/pkgs
3-
/tools/logs.txt
3+
/tools/logs.txt
4+
*.cov

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# JuliaSyntax
22

33
[![Build Status](https://github.com/c42f/JuliaSyntax.jl/workflows/CI/badge.svg)](https://github.com/c42f/JuliaSyntax.jl/actions)
4+
[![codecov.io](http://codecov.io/github/JuliaLang/JuliaSyntax.jl/coverage.svg?branch=main)](http://codecov.io/github/JuliaLang/JuliaSyntax.jl?branch=main)
45

56
A Julia frontend, written in Julia.
67

@@ -483,7 +484,7 @@ The same goes for command strings which are always wrapped in `K"cmdstring"`
483484
regardless of whether they have multiple pieces (due to triple-quoted
484485
dedenting) or otherwise.
485486

486-
### No desugaring of the closure in do blocks
487+
### No desugaring of the closure in do blocks
487488

488489
The reference parser represents `do` syntax with a closure for the second
489490
argument. That is,

0 commit comments

Comments
 (0)