Merge remote-tracking branch 'origin/main' #62
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 | |
jobs: | |
# rubocop: | |
# name: Rubocop | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Git Checkout | |
# uses: actions/checkout@v2 | |
# | |
# - name: Rubocop | |
# uses: andrewmcodes/[email protected] | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
rspec: | |
name: RSpec | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [3.0, 3.1, 3.2, 3.3, head, debug] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install libsqlite3-dev | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: RSpec | |
run: bundle exec rspec | |
codecov: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install libsqlite3-dev | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
bundler-cache: true | |
- name: RSpec | |
run: bundle exec rspec | |
- name: Code Coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |