summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorZsolt Kozaroczy <[email protected]>2023-05-22 10:36:39 +0200
committerGitHub <[email protected]>2023-05-22 10:36:39 +0200
commit5024da7177a6a160d118b90641801bd263493fdf (patch)
tree790b07cd1e7b14119fa5a86b8ce3917afed402da
parent9cf0c726bf50f55f71b47583c5393ff70ae0480e (diff)
parent603ba3b668e0a50e40483e0c2580fe9b59e7493d (diff)
downloadcaxlsx-5024da7177a6a160d118b90641801bd263493fdf.tar.gz
caxlsx-5024da7177a6a160d118b90641801bd263493fdf.zip
Merge pull request #245 from tagliala/chore/test-against-jruby-head
Test against JRuby head
-rw-r--r--.github/workflows/test.yml6
1 files 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