Skip to content

🔧 Setup appraisals #1

🔧 Setup appraisals

🔧 Setup appraisals #1

Workflow file for this run

name: Tests
on:
pull_request:
- '!*' # Ignore this workflow; Remove workflow once done pulling in upstream PRs
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby: [ 2.7, "3.0", 3.1, 3.2, 3.3 ]
os: [ ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
rubygems: latest
bundler-cache: true
- name: Run tests
timeout-minutes: 5
run: |
bundle exec turbo_tests -n4