From 508c93c7ad4f4df9aecdee057138ab044f476afc Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 7 Feb 2026 10:05:20 -0500 Subject: [PATCH 1/2] Use 'min' Julia version in ci.yml Make the CI test on lowest supported version as stated in Project.toml. Should also serve as an indicator if the minimum Julia version needs to be bumped --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5ad815..bb9e4da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: version: - - '1.0' + - 'min' - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' os: From 95ebb5a586cc03ccd72d357748629d0ef5269af9 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 7 Feb 2026 10:07:06 -0500 Subject: [PATCH 2/2] Remove commented out doc step in ci.yml There's no docs site for this project, and it doesn't look to be planned --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb9e4da..0689879 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,20 +40,3 @@ jobs: with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} -# docs: -# name: Documentation -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v6 -# - uses: julia-actions/setup-julia@v2 -# with: -# version: '1' -# - run: | -# julia --project=docs -e ' -# using Pkg -# Pkg.develop(PackageSpec(path=pwd())) -# Pkg.instantiate()' -# - run: julia --project=docs docs/make.jl -# env: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}