blob: b7d942477f216c619cb4ad0dabf2a97fe6617f6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
name: Testing on Windows
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: [ '3.1', '3.2', '3.3', '3.4', 'head' ]
os: [ 'windows-latest' ]
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: unit testing
run: |
gem install bundler rake
bundle install --jobs 4 --retry 3
bundle exec rake
|