Sha256: 2ab859816f2e085122a88e6a902d15f852f117a821f81e93376163685a63052f
Contents?: true
Size: 772 Bytes
Versions: 6
Compression:
Stored size: 772 Bytes
Contents
name: Test on: push: schedule: - cron: 0 2 * * 1-5 jobs: rspec: name: RSpec runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Install dependencies run: | gem install bundler bundle install --jobs=3 --retry=3 curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter ./cc-test-reporter before-build - name: Run rspec run: | rspec ./cc-test-reporter after-build --exit-code $? -t simplecov env: CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
Version data entries
6 entries across 6 versions & 2 rubygems