Merge pull request #8 from MSP-Greg/ruby-desc #14
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: >- | |
${{ matrix.os }} ${{ matrix.ruby }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu, macos, windows ] | |
ruby: [ 2.7, 3.0, 3.1, 3.2, head ] | |
include: | |
- { os: windows , ruby: mingw } | |
exclude: | |
- { os: windows , ruby: head } | |
steps: | |
- name: repo checkout | |
uses: actions/checkout@v3 | |
- name: load ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: run check.rb | |
run: | | |
ruby check.rb |