Skip to content

Carry TimAle's PR 58 #28

Carry TimAle's PR 58

Carry TimAle's PR 58 #28

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
ruby-version: ["2.6", "2.7", "3.0", "3.1"]
rspec-version: ["2_x", "3_0", "3_1", "3_2", "3_3", "3_4", "3_5", "3_6", "3_7", "3_8", "3_9", "3_10"]
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: gemfiles/rspec_${{ matrix.rspec-version }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Upload test artifacts
uses: actions/upload-artifact@v2
if: always()
with:
name: test-artifacts
path: tmp