From 603ba3b668e0a50e40483e0c2580fe9b59e7493d Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sat, 20 May 2023 18:32:55 +0200 Subject: Test against JRuby head Also provide a better user message in workflow results when failures are allowed ("allow failures" instead of "true") --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b63ec71d..25b6d621 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: test_ruby_versions: runs-on: ubuntu-20.04 - continue-on-error: ${{ matrix.allow_failures || false }} + continue-on-error: ${{ matrix.allow_failures == 'allow failures' || false }} env: BUNDLE_GEMFILE: "${{ matrix.gemfile }}" ### allows adding gemfile: to the matrix, bundler will automatically pick this up @@ -26,7 +26,9 @@ jobs: - ruby: jruby-9.3 - ruby: jruby-9.4 - ruby: head - allow_failures: true + allow_failures: 'allow failures' + - ruby: jruby-head + allow_failures: 'allow failures' steps: - uses: actions/checkout@v3 -- cgit v1.2.3