From c574708a6296727ae0ff12449e0913992e9e297d Mon Sep 17 00:00:00 2001 From: mtfishman Date: Mon, 3 Mar 2025 14:20:35 -0500 Subject: [PATCH] Set up CompatHelper to check test and docs --- .github/workflows/CompatHelper.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 76bdecf..9c23323 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -75,7 +75,8 @@ jobs: push!(registries, Pkg.RegistrySpec(; url=registry_url, name=registry_name)) end end - CompatHelper.main(; registries, bump_version=true) + subdirs = ["", "test", "docs"] + CompatHelper.main(; registries, subdirs, bump_version=true) shell: julia --color=yes {0} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}