.github/workflows/test.yml in yaml-0.2.1 vs .github/workflows/test.yml in yaml-0.3.0
- old
+ new
@@ -1,21 +1,29 @@
name: ubuntu
on: [push, pull_request]
jobs:
- build:
+ ruby-versions:
+ uses: ruby/actions/.github/workflows/ruby_versions.yml@master
+ with:
+ engine: cruby
+ min_version: 2.4
+
+ test:
+ needs: ruby-versions
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
- ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, head ]
+ ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v3.1.0
+ - uses: actions/checkout@v4.1.1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- bundler-cache: true
+ - name: Install dependencies
+ run: bundle install --jobs 4 --retry 3
- name: Run test
run: bundle exec rake test