ci: add stanardrb linting #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RSpec | |
on: [pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' | |
ruby: ['2.7', '3.0', '3.1', '3.2'] | |
gemfile: | |
[ | |
'Gemfile', | |
'gemfiles/faraday0.gemfile', | |
'gemfiles/faraday1.gemfile', | |
'gemfiles/faraday2.gemfile', | |
] | |
# Faraday 0.x with Ruby 3.x not supported | |
exclude: | |
- ruby: '3.0' | |
gemfile: gemfiles/faraday0.gemfile | |
- ruby: '3.1' | |
gemfile: gemfiles/faraday0.gemfile | |
- ruby: '3.2' | |
gemfile: gemfiles/faraday0.gemfile | |
runs-on: ${{ matrix.os }} | |
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: bundle exec rake spec |