From 42cdedd784b55b937e1c7e90c5659df80d35319f Mon Sep 17 00:00:00 2001 From: Kubo Takehiro Date: Thu, 25 Jul 2024 17:51:46 +0900 Subject: [PATCH] Disable continue-on-error for tests using truffleruby in github actions --- .github/workflows/tests.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01e52bd0..f94e5cbc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,15 +2,10 @@ name: Tests on: [push, pull_request] jobs: tests: - continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: - ruby: [2.7, '3.0', 3.1, 3.2, 3.3] - experimental: [false] - include: - - ruby: 'truffleruby-head' - experimental: true + ruby: [2.7, '3.0', 3.1, 3.2, 3.3, truffleruby-head] runs-on: ubuntu-latest