diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 4cab333..bb4e024 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: version: - - "1.6" + - "lts" - "1" os: - ubuntu-latest diff --git a/.github/workflows/TestGeneratedPkg.yml b/.github/workflows/TestGeneratedPkg.yml index 2555b43..5c4d645 100644 --- a/.github/workflows/TestGeneratedPkg.yml +++ b/.github/workflows/TestGeneratedPkg.yml @@ -26,7 +26,7 @@ jobs: fail-fast: false matrix: version: - - "1.6" + - "lts" - "1" os: - ubuntu-latest diff --git a/copier/ci.yml b/copier/ci.yml index 2a4dfea..0e9ff54 100644 --- a/copier/ci.yml +++ b/copier/ci.yml @@ -1,11 +1,12 @@ JuliaMinCIVersion: when: "{{ AnswerStrategy == 'ask' }}" type: str - help: Minimum Julia version used in the tests (lts defaults to the Long Term Support version) + help: Minimum Julia version used in the tests (min, lts, or a version. See https://github.com/julia-actions/setup-julia#examples for accepted values) default: "{% if JuliaMinVersion == JULIA_LTS_VERSION %}lts{% else %}{{ JuliaMinVersion }}{% endif %}" description: | The Test workflow runs two versions of Julia by default: the latest stable release, which is defined by "1", and this version. It defaults to either "lts", or the version that you answered in JuliaMinVersion, if it wasn't the LTS. + Also accepts "min", which defaults to the minimum supported version in the compat section of Project.toml, or a version specification. See https://github.com/julia-actions/setup-julia#examples for more options. AddMacToCI: when: "{{ AnswerStrategy == 'ask' }}"