summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 55a3b9b..229eafc 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -52,14 +52,12 @@ jobs:
fail-fast: false
matrix:
ruby:
- - 3.0
- - 2.7
- - 2.6
- - 2.5
- - 2.4
- - 2.3
- - 2.2
- - 2.1
+ - '3.1'
+ - '3.0'
+ - '2.7'
+ - '2.6'
+ - '2.5'
+ - '2.4'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
@@ -70,6 +68,8 @@ jobs:
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run tests
+ env:
+ RUBYOPT: "--disable-error_highlight"
run: bundle exec rake
test-jruby: