🔧 Setup appraisals #1
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: 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 |