rubocop fix #19
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 | |
on: | |
pull_request: | |
push: { branches: master } | |
jobs: | |
test: | |
name: Ruby ${{ matrix.ruby }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: { ruby: ['2.7', '3.0', '3.1', '3.2', head] } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# libyaml needed for Ruby's YAML library | |
- name: Install OS dependencies | |
run: sudo apt-get -y install libyaml-dev | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '${{ matrix.ruby }}' | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rspec |