Skip to content

Commit

Permalink
Merge 2e4e934 into 27f737c
Browse files Browse the repository at this point in the history
  • Loading branch information
racinmat committed May 3, 2022
2 parents 27f737c + 2e4e934 commit ad7889c
Show file tree
Hide file tree
Showing 14 changed files with 549 additions and 246 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,17 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- run: julia --color=yes --project=. -e 'using Pkg; pkg"add Mill#master"'
# - run: julia --color=yes --project=. -e 'using Pkg; pkg"add Mill#master"'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- run: julia --color=yes --project=./examples -e 'using Pkg; Pkg.instantiate()'
- name: Install dependencies
run: julia --color=yes --project=./examples -e '
using Pkg;
Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
if: matrix.version == '1'
# - run: julia --color=yes --project=./examples -e 'using Pkg; Pkg.instantiate()'
# if: matrix.version == '1'
- run: julia --color=yes --project=./examples examples/make.jl
if: matrix.version == '1'
- run: julia --color=yes --project=./examples examples/generated/recipes.jl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- run: julia --color=yes --project=. -e 'using Pkg; pkg"add Mill#master"'
# - run: julia --color=yes --project=. -e 'using Pkg; pkg"add Mill#master"'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- run: julia --color=yes --project=docs/ -e 'using Pkg; pkg"add Mill#master"'
# - run: julia --color=yes --project=docs/ -e 'using Pkg; pkg"add Mill#master"'
- name: Install dependencies
run: julia --project=docs/ -e '
using Pkg;
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JsonGrinder"
uuid = "d201646e-a9c0-11e8-1063-23b139159713"
authors = ["pevnak <pevnak@gmail.com>", "Matej Racinsky <racinsky.matej@seznam.cz>"]
version = "2.2.3"
version = "2.3.0"

[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Run the following in REPL:

Three pointers to get you started:
- [Examples: easy to understand JsonGrinder.jl and Mill.jl code across various domains](https://ctuavastlab.github.io/JsonGrinder.jl/stable/examples/)
- [Example allowing to use the package from Python](https://nbviewer.org/github/CTUAvastLab/JsonGrinder.jl/blob/gh-pages/v2.2.2/examples/mutagenesis_python.ipynb) using [pyjulia](https://github.com/JuliaPy/pyjulia)
- [Example allowing to use the package from Python](https://nbviewer.org/github/CTUAvastLab/JsonGrinder.jl/blob/gh-pages/v2.3.0/examples/mutagenesis_python.ipynb) using [pyjulia](https://github.com/JuliaPy/pyjulia)
- [The documentation](https://CTUAvastLab.github.io/JsonGrinder.jl/stable)
- [The API Reference](https://ctuavastlab.github.io/JsonGrinder.jl/stable/api/)

Expand Down

0 comments on commit ad7889c

Please sign in to comment.