Sha256: cf1452101b06407ee2bf4bec7d004579b729fd010a789eff8c0890bd075f4cf3
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
name: Test on: pull_request: {} push: branches: - master env: BUNDLE_WITHOUT: release jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: "2.7" bundler-cache: true - name: Run Rubocop run: bundle exec rake rubocop spec: runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - ruby: "2.7" coverage: "yes" - ruby: "3.0" - ruby: "3.1" - ruby: "3.2" env: COVERAGE: ${{ matrix.coverage }} name: RSpec - Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v3 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: spec tests run: bundle exec rake test:spec - name: Build gem run: gem build *.gemspec # It seems some additonal setup of Docker may be needed for # the acceptance tests to work. # - name: Run acceptance tests # run: bundle exec rake test:acceptance tests: needs: - spec - rubocop runs-on: ubuntu-latest name: Test suite steps: - run: echo Test suite completed
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
beaker-vagrant-1.2.0 | .github/workflows/test.yml |
beaker-vagrant-1.1.0 | .github/workflows/test.yml |
beaker-vagrant-1.0.0 | .github/workflows/test.yml |