Skip to content

Cast boolean values

Cast boolean values #7

Workflow file for this run

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