summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-05-20 18:32:55 +0200
committerGeremia Taglialatela <[email protected]>2023-05-20 18:32:55 +0200
commit603ba3b668e0a50e40483e0c2580fe9b59e7493d (patch)
tree132ecbbe71cfc375e3d402590b6a203ed0eb3c8a /.github/workflows/test.yml
parent6a4b82def2e94b4811c38c37e606d426710d1e6c (diff)
downloadcaxlsx-603ba3b668e0a50e40483e0c2580fe9b59e7493d.tar.gz
caxlsx-603ba3b668e0a50e40483e0c2580fe9b59e7493d.zip
Test against JRuby head
Also provide a better user message in workflow results when failures are allowed ("allow failures" instead of "true")
Diffstat (limited to '.github/workflows/test.yml')
-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