Sha256: 849002081f6ca748decc882c63854f0ea4341993974e4973739d56da35eca06d
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
name: Test on: pull_request: {} push: branches: - master env: BUNDLE_WITHOUT: release jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: "3.3" bundler-cache: true - name: Run Rubocop run: bundle exec rake rubocop test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - ruby: "2.7" - ruby: "3.0" coverage: "yes" - ruby: "3.1" - ruby: "3.2" - ruby: "3.3" env: COVERAGE: ${{ matrix.coverage }} steps: - uses: actions/checkout@v4 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake - name: Build gem run: gem build --strict --verbose *.gemspec tests: needs: - rubocop - test runs-on: ubuntu-latest name: Test suite steps: - run: echo Test suite completed
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
beaker-vmware-2.1.1 | .github/workflows/test.yml |
beaker-vcloud-2.0.0 | .github/workflows/test.yml |
beaker-vmware-2.1.0 | .github/workflows/test.yml |