From 349f3fc84e9cefadb853f4621b12bd7501757be0 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 9 Oct 2023 12:20:48 +0200 Subject: [PATCH 1/2] bump documenter version --- docs/Project.toml | 3 +++ docs/make.jl | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 511e47d..4df059f 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -2,3 +2,6 @@ DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306" + +[compat] +Documenter = "1" diff --git a/docs/make.jl b/docs/make.jl index 5b3f236..f62e316 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -23,7 +23,6 @@ makedocs( sitename = "PikaParser.jl", linkcheck = false, pages = ["README" => "index.md"; example_mds; "Reference" => "reference.md"], - strict = [:missing_docs, :cross_references, :example_block], ) deploydocs( From 591b15d15259f740c529bfdf0fda2f689543d0a1 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 9 Oct 2023 12:24:57 +0200 Subject: [PATCH 2/2] upd julia cache --- .github/workflows/ci.yml | 11 +---------- .github/workflows/docs.yml | 1 + 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce89df9..43d6fb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,16 +29,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- + - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@latest - run: | git config --global user.name Tester diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f905dc2..d3a34a9 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,6 +17,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: julia-actions/setup-julia@latest + - uses: julia-actions/cache@v1 - name: Install dependencies run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy