Skip to content

Fix postposition rescue and if #40

Fix postposition rescue and if

Fix postposition rescue and if #40

Workflow file for this run

name: Test on Windows
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: ['3.3', '3.2', '3.1', '3.0', '2.7']
os:
- windows-latest
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: ridk exec bundle install
- name: Run tests
run: bundle exec rake test