Skip to content

Commit

Permalink
check ruby < 2.3 using containers
Browse files Browse the repository at this point in the history
  • Loading branch information
toy committed Jun 8, 2023
1 parent d7fbbd1 commit e882de7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ jobs:
strategy:
matrix:
ruby:
- '2.0'
- '2.1'
- '2.2'
- '2.3'
- '2.4'
- '2.5'
Expand All @@ -31,3 +28,18 @@ jobs:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rspec
legacy:
runs-on: ubuntu-latest
container: ${{ matrix.container }}
strategy:
matrix:
container:
- rspec/ci:1.9.3
- ruby:2.0
- ruby:2.1
- ruby:2.2
fail-fast: false
steps:
- uses: actions/checkout@v3
- run: bundle install
- run: bundle exec rspec --format documentation

0 comments on commit e882de7

Please sign in to comment.