.github/workflows/test.yml in beaker-openstack-1.0.0 vs .github/workflows/test.yml in beaker-openstack-2.0.0

- old
+ new

@@ -9,21 +9,16 @@ runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - - "2.4" - - "2.5" - - "2.6" - "2.7" - "3.0" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - env: - BUNDLE_WITHOUT: release - name: Run tests run: bundle exec rake spec