diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 53f53a8..04d73b9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,6 +19,7 @@ jobs: matrix: version: - '1.8' + - '1' - 'nightly' os: - ubuntu-latest @@ -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 + diff --git a/README.md b/README.md index 440b1d6..efb3357 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ +# HerbInterpret.jl + +[![codecov](https://codecov.io/github/Herb-AI/HerbInterpret.jl/graph/badge.svg?token=XQCX4ZN0SG)](https://codecov.io/github/Herb-AI/HerbInterpret.jl) [![Build Status](https://github.com/Herb-AI/HerbInterpret.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/Herb-AI/HerbInterpret.jl/actions/workflows/CI.yml?query=branch%3Amaster) [![Dev-Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://Herb-AI.github.io/Herb.jl/dev) -# HerbInterpret.jl - This package provides functionality for interpreting (candidate) programs in the Herb Program Synthesis framework. `HerbInterpret.jl` can handle arbitrary Julia expressions, but also arbitrary other interpretors for which an evaluation function is given.