We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34550ad commit c457574Copy full SHA for c457574
.github/workflows/benchmark.yml
@@ -6,26 +6,21 @@ on:
6
7
jobs:
8
benchmark:
9
- name: "Benchmark: Ruby ${{ matrix.ruby-version }}: ${{ matrix.runs-on }}"
+ name: "Benchmark: ${{ matrix.runs-on }}"
10
strategy:
11
fail-fast: false
12
matrix:
13
- ruby-version:
14
- - 2.7
15
- - '3.0'
16
runs-on:
17
- macos-latest
18
- ubuntu-latest
19
- windows-latest
20
- exclude:
21
- - { runs-on: windows-latest , ruby-version: '3.0' }
22
runs-on: ${{ matrix.runs-on }}
23
timeout-minutes: 10
24
steps:
25
- uses: actions/checkout@v4
26
- uses: ruby/setup-ruby@v1
27
with:
28
- ruby-version: ${{ matrix.ruby-version }}
+ ruby-version: ruby
29
- name: Install dependencies
30
run: |
31
bundle install
0 commit comments