.github/workflows/ruby.yml in avro_turf-1.3.1 vs .github/workflows/ruby.yml in avro_turf-1.4.0

- old
+ new

@@ -6,18 +6,17 @@ build: runs-on: ubuntu-latest strategy: matrix: - ruby-version: [1.8.x, 1.9.x, 2.0.x, 2.1.x, 2.2.x, - 2.3.x, 2.4.x, 2.5.x, 2.6.x, 2.7.x, 3.0.x] + ruby: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0] steps: - - uses: actions/checkout@v1 - - name: Set up Ruby 2.6 - uses: actions/setup-ruby@v1 + - uses: actions/checkout@v2 + - name: Set up Ruby ${{ matrix.ruby }} + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.6.x + ruby-version: ${{ matrix.ruby }} - name: Build and test with RSpec run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rspec