Skip to content

Commit

Permalink
Merge pull request #13 from Herb-AI/CI/add_code_coverage
Browse files Browse the repository at this point in the history
Add code coverage reporting to CI.yml
  • Loading branch information
THinnerichs authored Apr 15, 2024
2 parents 1ada2a0 + 2671039 commit eab1898
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
matrix:
version:
- '1.8'
- '1'
- 'nightly'
os:
- ubuntu-latest
Expand All @@ -33,3 +34,10 @@ jobs:
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: false

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# HerbCore.jl

[![codecov](https://codecov.io/github/Herb-AI/HerbCore.jl/graph/badge.svg?token=92CPVT1ZQU)](https://codecov.io/github/Herb-AI/HerbCore.jl)
[![Build Status](https://github.com/Herb-AI/HerbCore.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/Herb-AI/HerbCore.jl/actions/workflows/CI.yml?query=branch%3Amaster)

This package provides the core functionality of the program synthesis library `Herb.jl` to avoid circular dependencies for core principles. Used for representing and manipulating expression trees, and abstract types for constraints and grammars.

0 comments on commit eab1898

Please sign in to comment.