diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0fbe780..3fde104 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,14 +18,16 @@ jobs: strategy: fail-fast: false matrix: - version: - - '1.0' - - '1.9' - - 'nightly' - os: - - ubuntu-latest - arch: - - x64 + include: + - version: '1' + os: ubuntu-latest + arch: x64 + - version: '1.6' + os: ubuntu-latest + arch: x64 + - version: '1' + os: macOS-latest + arch: x64 steps: - uses: actions/checkout@v3 - uses: julia-actions/setup-julia@v1 @@ -39,30 +41,3 @@ jobs: - uses: codecov/codecov-action@v3 with: files: lcov.info - docs: - name: Documentation - runs-on: ubuntu-latest - permissions: - contents: write - statuses: write - steps: - - uses: actions/checkout@v3 - - uses: julia-actions/setup-julia@v1 - with: - version: '1' - - name: Configure doc environment - run: | - julia --project=docs/ -e ' - using Pkg - Pkg.develop(PackageSpec(path=pwd())) - Pkg.instantiate()' - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-docdeploy@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: | - julia --project=docs -e ' - using Documenter: DocMeta, doctest - using CombinatorialLinearOracles - DocMeta.setdocmeta!(CombinatorialLinearOracles, :DocTestSetup, :(using CombinatorialLinearOracles); recursive=true) - doctest(CombinatorialLinearOracles)' diff --git a/.gitignore b/.gitignore index 0887050..d74b83e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ *.jl.cov *.jl.mem /docs/Manifest.toml +/Manifest.toml /docs/build/ +.vscode diff --git a/Manifest.toml b/Manifest.toml deleted file mode 100644 index 6400f8a..0000000 --- a/Manifest.toml +++ /dev/null @@ -1,7 +0,0 @@ -# This file is machine-generated - editing it directly is not advised - -julia_version = "1.9.3" -manifest_format = "2.0" -project_hash = "f060a2e64e479ab6465690e0158022ef99ef3465" - -[deps] diff --git a/Project.toml b/Project.toml index f52f9d1..095617f 100644 --- a/Project.toml +++ b/Project.toml @@ -3,6 +3,12 @@ uuid = "0002e35e-4a6a-41c8-a2f5-6940c7e5949f" authors = ["Mathieu Besançon and contributors"] version = "1.0.0-DEV" +[deps] +Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" +GraphsFlows = "06909019-6f44-4949-96fc-b9d9aaa02889" +GraphsMatching = "c3af3a8c-b79e-4b01-bf44-c718d7e0e0d6" +MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" + [compat] julia = "1" diff --git a/README.md b/README.md index dd4f429..c859a7e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ # CombinatorialLinearOracles -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://ZIB-IOL.github.io/CombinatorialLinearOracles.jl/stable/) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ZIB-IOL.github.io/CombinatorialLinearOracles.jl/dev/) [![Build Status](https://github.com/ZIB-IOL/CombinatorialLinearOracles.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/ZIB-IOL/CombinatorialLinearOracles.jl/actions/workflows/CI.yml?query=branch%3Amain) [![Coverage](https://codecov.io/gh/ZIB-IOL/CombinatorialLinearOracles.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ZIB-IOL/CombinatorialLinearOracles.jl) diff --git a/docs/Project.toml b/docs/Project.toml deleted file mode 100644 index b112e51..0000000 --- a/docs/Project.toml +++ /dev/null @@ -1,3 +0,0 @@ -[deps] -CombinatorialLinearOracles = "0002e35e-4a6a-41c8-a2f5-6940c7e5949f" -Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" diff --git a/docs/make.jl b/docs/make.jl deleted file mode 100644 index afd8cad..0000000 --- a/docs/make.jl +++ /dev/null @@ -1,25 +0,0 @@ -using CombinatorialLinearOracles -using Documenter - -DocMeta.setdocmeta!(CombinatorialLinearOracles, :DocTestSetup, :(using CombinatorialLinearOracles); recursive=true) - -makedocs(; - modules=[CombinatorialLinearOracles], - authors="Mathieu Besançon and contributors", - repo="https://github.com/ZIB-IOL/CombinatorialLinearOracles.jl/blob/{commit}{path}#{line}", - sitename="CombinatorialLinearOracles.jl", - format=Documenter.HTML(; - prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://ZIB-IOL.github.io/CombinatorialLinearOracles.jl", - edit_link="main", - assets=String[], - ), - pages=[ - "Home" => "index.md", - ], -) - -deploydocs(; - repo="github.com/ZIB-IOL/CombinatorialLinearOracles.jl", - devbranch="main", -) diff --git a/docs/src/index.md b/docs/src/index.md deleted file mode 100644 index bebf6e2..0000000 --- a/docs/src/index.md +++ /dev/null @@ -1,14 +0,0 @@ -```@meta -CurrentModule = CombinatorialLinearOracles -``` - -# CombinatorialLinearOracles - -Documentation for [CombinatorialLinearOracles](https://github.com/ZIB-IOL/CombinatorialLinearOracles.jl). - -```@index -``` - -```@autodocs -Modules = [CombinatorialLinearOracles] -```