Skip to content

Use GitHub actions for testing [wip] #2

Use GitHub actions for testing [wip]

Use GitHub actions for testing [wip] #2

Workflow file for this run

name: Ruby
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7', '2.6', '2.5', '2.4' ]
gemfile: [gemfiles/as4.gemfile, gemfiles/as5.gemfile, gemfiles/as6.gemfile]
exclude:
- ruby: 2.3
gemfile: gemfiles/as6.gemfile
- ruby: 2.4
gemfile: gemfiles/as6.gemfile
- ruby: 2.7
gemfile: gemfiles/as4.gemfile
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake