Skip to content

Commit d72c425

Browse files
authored
Merge pull request #137 from TidierOrg/add-coverage
adds code coverage
2 parents 89a8672 + ca9c00e commit d72c425

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
tags: ['*']
6+
tags: ["*"]
77
pull_request:
88
concurrency:
99
# Skip intermediate builds: always.
@@ -18,8 +18,8 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.10'
22-
- 'nightly'
21+
- "1.10"
22+
- "nightly"
2323
os:
2424
- ubuntu-latest
2525
arch:
@@ -33,3 +33,8 @@ jobs:
3333
- uses: julia-actions/cache@v1
3434
- uses: julia-actions/julia-buildpkg@v1
3535
- uses: julia-actions/julia-runtest@v1
36+
- uses: julia-actions/julia-processcoverage@v1
37+
- uses: coverallsapp/[email protected]
38+
with:
39+
github-token: ${{ github.token }}
40+
path-to-lcov: lcov.info

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![Docs: Latest](https://img.shields.io/badge/Docs-Latest-blue.svg)](https://tidierorg.github.io/TidierData.jl/latest)
55
[![Build Status](https://github.com/TidierOrg/TidierData.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/TidierOrg/TidierData.jl/actions/workflows/CI.yml?query=branch%3Amain)
66
[![Downloads](https://img.shields.io/badge/dynamic/json?url=http%3A%2F%2Fjuliapkgstats.com%2Fapi%2Fv1%2Fmonthly_downloads%2FTidierData&query=total_requests&suffix=%2Fmonth&label=Downloads)](http://juliapkgstats.com/pkg/TidierData)
7+
[![Coverage Status](https://coveralls.io/repos/github/TidierOrg/TidierData.jl/badge.svg?branch=main)](https://coveralls.io/github/TidierOrg/TidierData.jl?branch=main)
78

89
<img src="/docs/src/assets/Tidier_jl_logo.png" align="right" style="padding-left:10px;" width="150"/>
910

@@ -70,7 +71,7 @@ TidierData.jl currently supports the following top-level macros:
7071
- `@glimpse()` and `@head()`
7172
- `@select()` and `@distinct()`
7273
- `@rename()` and `@rename_with()`
73-
- `@mutate()` and `@transmute()`
74+
- `@mutate()` and `@transmute()`
7475
- `@summarize()` and `@summarise()`
7576
- `@filter()`
7677
- `@slice()`, `@slice_sample()`, `@slice_min()`, `@slice_max()`, `@slice_head()`, and `@slice_tail()`
@@ -124,8 +125,8 @@ end
124125

125126
```
126127
5×2 DataFrame
127-
Row │ Title Budget
128-
│ String Float64?
128+
Row │ Title Budget
129+
│ String Float64?
129130
─────┼──────────────────────────────────────
130131
1 │ 'Til There Was You 23.0
131132
2 │ 10 Things I Hate About You 16.0

0 commit comments

Comments
 (0)