1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
---
name: windows
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Ruby ${{ matrix.version.name }}
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
version:
- { name: 3.2, value: 3.2.9 }
- { name: 3.3, value: 3.3.9 }
steps:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.version.value }}
- name: Setup dependencies
shell: bash
run: bin/setup.sh
- name: Run tests
run: ruby bin/rake
timeout-minutes: 10
|