Cast boolean values #7
Workflow file for this run
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: Runs linter and tests | |
on: [push, pull_request] | |
jobs: | |
linters_and_tests: | |
runs-on: ${{ matrix.os }}-latest | |
continue-on-error: ${{ matrix.experimental == true }} | |
name: Linter and tests on ${{ matrix.os }}-ruby-${{ matrix.ruby-version }} | |
strategy: | |
matrix: | |
os: [ubuntu, macos] | |
ruby-version: | |
- 3.3 | |
- 3.2 | |
- 3.1 | |
- 3.0 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Runs linter and tests | |
run: bundle exec rake |