diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 5aac12b..98e1e3b 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -37,7 +37,7 @@ jobs: - name: "Run CompatHelper" run: | import CompatHelper - CompatHelper.main(; subdirs=["", "test"]) + CompatHelper.main(; subdirs=["", "test", "docs"]) shell: julia --color=yes {0} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5e46b2..2ed7482 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,9 @@ jobs: fail-fast: false matrix: version: - - '1' + - '1.8' + - '1.9' + - '1.10' os: - ubuntu-latest - macOS-latest diff --git a/Project.toml b/Project.toml index 2a470b8..bf0b4c8 100644 --- a/Project.toml +++ b/Project.toml @@ -7,3 +7,9 @@ version = "0.1.0" CxxWrap = "1f15a43c-97ca-5a2a-ae31-89f07a497df4" Preferences = "21216c6a-2e73-6563-6e65-726566657250" openfhe_julia_jll = "e5e97983-1b8c-50fe-92b7-0e05c8c202e2" + +[compat] +julia = "1.8" +CxxWrap = "0.14" +Preferences = "1" + diff --git a/README.md b/README.md index a47c6dd..7f771ad 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # OpenFHE.jl +[![Docs-stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://openfhe-jl.lakemper.eu/stable) +[![Docs-dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://openfhe-jl.lakemper.eu/dev) [![Build Status](https://github.com/sloede/OpenFHE.jl/workflows/CI/badge.svg)](https://github.com/sloede/OpenFHE.jl/actions?query=workflow%3ACI) +[![Coveralls](https://coveralls.io/repos/github/sloede/OpenFHE.jl/badge.svg)](https://coveralls.io/github/sloede/OpenFHE.jl) +[![Codecov](https://codecov.io/gh/sloede/OpenFHE.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/sloede/OpenFHE.jl) [![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/license/mit/) OpenFHE.jl is a Julia wrapper package for diff --git a/test/Project.toml b/test/Project.toml index 0c36332..ec84819 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -1,2 +1,5 @@ [deps] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[compat] +Test = "1"