Skip to content

Add ruby 3.2 to github workflow tests #35

Add ruby 3.2 to github workflow tests

Add ruby 3.2 to github workflow tests #35

Workflow file for this run

# Auto-generated by Cimas: Do not edit it manually!
# See https://github.com/metanorma/cimas
name: rake
on:
push:
branches: [ main ]
tags: [ v* ]
pull_request:
jobs:
rake:
name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby: [ '3.2', '3.1', '3.0', '2.7', '2.6' ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
experimental: [ false ]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake