From c0f7523f79f866de3fd7af6c61cd266b65a99184 Mon Sep 17 00:00:00 2001 From: Richard Dennis Date: Mon, 18 Mar 2024 23:31:22 +0000 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c10ef92..f081f3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,33 +44,3 @@ jobs: - uses: codecov/codecov-action@v4 with: files: lcov.info - docs: - name: Documentation - runs-on: ubuntu-latest - permissions: - actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created - contents: write - statuses: write - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 - with: - version: '1' - - uses: julia-actions/cache@v1 - - name: Configure doc environment - shell: julia --project=docs --color=yes {0} - run: | - 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 }} - - name: Run doctests - shell: julia --project=docs --color=yes {0} - run: | - using Documenter: DocMeta, doctest - using ChebyshevApprox - DocMeta.setdocmeta!(ChebyshevApprox, :DocTestSetup, :(using ChebyshevApprox); recursive=true) - doctest(ChebyshevApprox)