-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 736 Bytes
/
rake.yml
File metadata and controls
32 lines (32 loc) · 736 Bytes
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
# SPDX-FileCopyrightText: 2025 David Rabkin
# SPDX-License-Identifier: 0BSD
---
name: rake
'on': [pull_request, push]
jobs:
rake:
strategy:
fail-fast: false
matrix:
os:
- macos-14
- macos-15
- macos-15-intel
- ubuntu-22.04
- ubuntu-24.04
- windows-2022
- windows-2025
ruby:
- 3.2
- 3.3
- 3.4
name: Rake on ${{ matrix.os }} / Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake