fix: change rack.version to rack.release #25
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
name: Ruby ${{ matrix.ruby }} | |
strategy: | |
fail-fast: true | |
matrix: | |
ruby: | |
- "2.6.0" | |
- "3.0.0" | |
- "head" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependent libraries | |
run: sudo apt-get install libpq-dev | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # 'bundle install' and cache | |
- name: Check code style | |
run: bundle exec rubocop | |
continue-on-error: false | |
- name: Run tests | |
run: bundle exec rake --trace | |
continue-on-error: false | |
- name: Report coverage | |
uses: coverallsapp/github-action@v2 | |
with: | |
flag-name: ruby-${{ matrix.ruby }} | |
parallel: true | |
coveralls-done: | |
if: always() | |
name: Finish coverage reporting | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Coveralls done | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true | |
carryforward: "ruby-2.6.0,ruby-3.0.0,ruby-head" |