From 2aaf151d9442f7174cf9b24b0d82d0092e1b3107 Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 8 Oct 2024 20:57:12 +0100 Subject: [PATCH 1/3] Update CI.yml --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 115ac60..90bbc27 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,9 @@ jobs: fail-fast: false matrix: version: - - '1' + - '1.11' + - 'pre' + - 'lts' os: - ubuntu-20.04 # https://github.com/actions/runner-images/discussions/7188 arch: @@ -87,4 +89,4 @@ jobs: using Documenter: DocMeta, doctest using FiniteVolumeMethod DocMeta.setdocmeta!(FiniteVolumeMethod, :DocTestSetup, :(using FiniteVolumeMethod); recursive=true) - doctest(FiniteVolumeMethod)' \ No newline at end of file + doctest(FiniteVolumeMethod)' From 31844cd2272efc331ee0d9cfb10c0f1a9ff86b0b Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:18:33 +0100 Subject: [PATCH 2/3] Update CI.yml --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 90bbc27..66fdfae 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,8 +19,8 @@ jobs: matrix: version: - '1.11' - - 'pre' - - 'lts' + - pre + - lts os: - ubuntu-20.04 # https://github.com/actions/runner-images/discussions/7188 arch: From e3c83dd8a4ef9333be589afd6419a034ad43d74f Mon Sep 17 00:00:00 2001 From: Daniel VandenHeuvel <95613936+DanielVandH@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:19:43 +0100 Subject: [PATCH 3/3] Update CI.yml --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 66fdfae..2fc9f8e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,8 +19,8 @@ jobs: matrix: version: - '1.11' - - pre - - lts + - 'pre' + - 'lts' os: - ubuntu-20.04 # https://github.com/actions/runner-images/discussions/7188 arch: @@ -38,7 +38,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Julia - uses: julia-actions/setup-julia@v1 + uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }}