Skip to content

DEBUG

DEBUG #192

Workflow file for this run

name: Ruby Gem
on:
pull_request:
branches:
- master
push:
branches:
- master
- aki
jobs:
spec:
name: Spec
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/[email protected]
with:
submodules: true
- uses: ruby/[email protected]
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake package spec steep
- uses: actions/[email protected]
with:
name: ${{ matrix.ruby }}-${{ matrix.runner }}
path: intermediate/*.gem
strategy:
matrix:
ruby: [3.4.0-preview2, 3.3.6, 3.2.6, 3.1.6]
runner:
- macos-13
- macos-14
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- windows-2019
- windows-2022
exclude:
- ruby: 3.3.6
runner: windows-2019
- ruby: 3.3.6
runner: windows-2022
include:
- ruby: 3.3.5
runner: windows-2019
- ruby: 3.3.5
runner: windows-2022