mirror of
https://github.com/sdsykes/fastimage.git
synced 2025-10-05 00:02:33 -04:00
Fix workflow for older rubies
This commit is contained in:
parent
d515546a1d
commit
c69d230098
20
.github/workflows/test.yml
vendored
20
.github/workflows/test.yml
vendored
@ -9,9 +9,6 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
ruby:
|
||||
- '2.0'
|
||||
- '2.1'
|
||||
- '2.2'
|
||||
- '2.3'
|
||||
- '2.4'
|
||||
- '2.5'
|
||||
@ -27,3 +24,20 @@ jobs:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
bundler-cache: true
|
||||
- run: bundle exec rake
|
||||
test_old_ruby:
|
||||
name: Test (Ruby ${{ matrix.ruby }})
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
ruby:
|
||||
- '2.0'
|
||||
- '2.1'
|
||||
- '2.2'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
bundler-cache: true
|
||||
- run: bundle exec rake
|
||||
|
Loading…
x
Reference in New Issue
Block a user