Skip to content

Merge pull request #32 from flavorjones/flavorjones-pin-to-macos13 #227

Merge pull request #32 from flavorjones/flavorjones-pin-to-macos13

Merge pull request #32 from flavorjones/flavorjones-pin-to-macos13 #227

Workflow file for this run

name: isolated
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3
push:
branches:
- main
- v*.*.x
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- '*'
paths: ["isolated/**/*", ".github/workflows/isolated.yml"]
jobs:
isolated:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3", "head"]
runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{matrix.runs-on}}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
working-directory: isolated
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- run: bundle exec rake compile test
working-directory: isolated