Sha256: 8f33d4119c6e9a94373db972dbaf1a4611d64e524e2b4af902885aaa5dac0d85
Contents?: true
Size: 1.15 KB
Versions: 9
Compression:
Stored size: 1.15 KB
Contents
name: Tests on: [push] jobs: linter: strategy: fail-fast: false # I understand this is to run on all versions. matrix: ruby: ['3.0.4'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rubocop --display-cop-names --parallel rspec: strategy: fail-fast: false # I understand this is to run on all versions. matrix: ruby: ['3.0.4'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: | curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter - run: | ./cc-test-reporter before-build bundle exec rspec ./cc-test-reporter after-build -r $CC_TEST_REPORTER_ID --exit-code $? env: CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
Version data entries
9 entries across 9 versions & 1 rubygems