Sha256: 869b4034973984d65c68633ffc4fee4a7a4d0bd67ed44c7b86987562f2465caa
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
--- name: ruby-tests on: pull_request_target: push: branches: - main workflow_dispatch: inputs: {} jobs: build: name: Tests with Ruby ${{ matrix.ruby }} and ${{ matrix.gemfile }} runs-on: "ubuntu-latest" if: | github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' || github.actor != 'dependabot[bot]' strategy: fail-fast: false matrix: ruby: ["2.7", "3.0", "3.1"] gemfile: - Gemfile steps: - uses: actions/checkout@v2.4.0 - uses: actions/cache@v2 with: path: vendor/bundle key: > ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles(matrix.gemfile) }} - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install gem dependencies env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} run: | gem install bundler bundle config path vendor/bundle bundle update --jobs 4 --retry 3 - name: Run Tests env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} run: | bundle exec rake
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
joi-0.0.2 | .github/workflows/ruby-tests.yml |
breadcrumbs-0.3.0 | .github/workflows/ruby-tests.yml |
formatted_attributes-0.2.0 | .github/workflows/ruby-tests.yml |