From c8769f2caadb9dc04b38b65bf31358ab4979a641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Mon, 13 Oct 2025 22:14:06 -0700 Subject: [PATCH 1/2] Bump CI to racket 8.18 --- .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 7fda6ed..c236bb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: racket-variant: ['BC', 'CS'] - racket-version: ['8.15', '8.16', '8.17'] + racket-version: ['8.16', '8.17', '8.18'] steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 From 265359f91e92e592bbdf0b44fd51a50bbc7a34c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Mon, 13 Oct 2025 22:24:12 -0700 Subject: [PATCH 2/2] No BC release after 8.17 --- .github/workflows/ci.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c236bb2..a97fc89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,17 @@ jobs: strategy: fail-fast: false matrix: - racket-variant: ['BC', 'CS'] - racket-version: ['8.16', '8.17', '8.18'] + include: + - racket-version: '8.16' + racket-variant: 'BC' + - racket-version: '8.16' + racket-variant: 'CS' + - racket-version: '8.17' + racket-variant: 'BC' + - racket-version: '8.17' + racket-variant: 'CS' + - racket-version: '8.18' + racket-variant: 'CS' steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8