summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-10-24 15:51:18 +0200
committerBenoit Daloze <eregontp@gmail.com>2020-10-24 15:51:18 +0200
commit71f699543b22e74b4aca5d70c462a22cbf420938 (patch)
treec345cb75242cf89f8c7d02e69f076633932cbe07 /.github
parentf754b422855131111092c0c147d744775cc4793f (diff)
Tweaks for the ruby/spec workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/spec_guards.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/spec_guards.yml b/.github/workflows/spec_guards.yml
index 5e8eaaa937..65d1a65807 100644
--- a/.github/workflows/spec_guards.yml
+++ b/.github/workflows/spec_guards.yml
@@ -1,4 +1,4 @@
-name: Rubyspec Guard Checks
+name: Rubyspec Version Guards Check
on: [push, pull_request]
@@ -9,11 +9,9 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
+ # Specs from ruby/spec should still run on all supported Ruby versions.
+ # This also ensures the needed ruby_version_is guards are there, see spec/README.md.
ruby:
-# - ruby-2.1
-# - ruby-2.2
-# - ruby-2.3
-# - ruby-2.4
- ruby-2.5
- ruby-2.6
- ruby-2.7
@@ -23,6 +21,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
+ bundler: none
- run: ruby ../mspec/bin/mspec
working-directory: spec/ruby
- uses: k0kubun/action-slack@v2.0.0