build(deps): bump rubocop from 1.54.1 to 1.56.2 (#259) #121
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: Test Master | |
on: | |
push: | |
branches: [master] | |
jobs: | |
testing: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
ruby: | |
- "3.2" | |
- "3.1" | |
- "3.0" | |
- "2.7" | |
include: | |
- ruby: "3.0" | |
coverage: "true" | |
name: Test with ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run Rubocop | |
run: bundle exec rubocop lib | |
- name: Run Test | |
run: bundle exec rspec | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |