Sha256: d4e1fc91027d585bc89be998ce0b8551df2ab17be2099eaddfdb3bc0df488ad6
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
name: RSpec on: [push, pull_request] jobs: rspec: strategy: fail-fast: false matrix: os: [ubuntu-latest] ruby: [2.7] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: RSpec run run: | bash -c " bundle exec rspec [[ $? -ne 2 ]] " rspec-mri: needs: rspec strategy: fail-fast: false matrix: os: [ ubuntu-latest ] ruby: [2.5, 2.6, '3.0', head] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rspec rspec-truffleruby: needs: rspec strategy: fail-fast: false matrix: os: [ ubuntu-latest ] ruby: [truffleruby] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rspec
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
telemetry-logger-0.2.0 | .github/workflows/rspec.yml |
telemetry-logger-0.1.1 | .github/workflows/rspec.yml |
telemetry-logger-0.1.0 | .github/workflows/rspec.yml |