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 8af16ba commit f768af0Copy full SHA for f768af0
.github/workflows/test.yml
@@ -4,14 +4,10 @@ on: [push, pull_request]
4
5
jobs:
6
ruby-versions:
7
- runs-on: ubuntu-latest
8
- outputs:
9
- versions: ${{ steps.versions.outputs.value }}
10
- steps:
11
- - id: versions
12
- run: |
13
- versions=$(curl -s 'https://cache.ruby-lang.org/pub/misc/ci_versions/all.json' | jq -c '. + ["2.5"]')
14
- echo "value=${versions}" >> $GITHUB_OUTPUT
+ uses: ruby/actions/.github/workflows/ruby_versions.yml@master
+ with:
+ min_version: 2.5
+
15
test:
16
needs: ruby-versions
17
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
0 commit comments