Skip to content

Use GitHub actions for testing [wip] #1

Use GitHub actions for testing [wip]

Use GitHub actions for testing [wip] #1

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-version: 2.3

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Ruby

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 13): Matrix exclude key 'ruby-version' does not match any key within the matrix .github/workflows/ci.yml (Line: 18, Col: 13): Matrix exclude key 'ruby-version' does not match any key within the matrix
gemfile: gemfiles/as6.gemfile
- ruby-version: 2.4
gemfile: gemfiles/as6.gemfile
- ruby-version: 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