.github/workflows/integration_test.yml in inline_svg-1.8.0 vs .github/workflows/integration_test.yml in inline_svg-1.9.0

- old
+ new

@@ -2,27 +2,27 @@ on: [push] jobs: build: - runs-on: ubuntu-latest strategy: matrix: test-branch: [rails5, rails6, rails7] + timeout-minutes: 20 steps: - name: Checkout uses: actions/checkout@v2 - name: Checkout test app uses: actions/checkout@v2 with: repository: jamesmartin/inline_svg_test_app ref: ${{ matrix.test-branch }} path: test_app - name: Set up Ruby 2.7 - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: 2.7.7 - name: Build local gem run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake build