Skip to content

Remove then keywords from if statements #65

Remove then keywords from if statements

Remove then keywords from if statements #65

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: >-
${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- windows
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- head
include:
- { os: windows , ruby: mingw }
- { os: windows , ruby: mswin }
exclude:
- { os: macos , ruby: "2.5" }
- { os: windows , ruby: head }
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache gems
- run: bundle exec rake