Sha256: b48cbd80dedcb36ea3cf277dc2d08ab439da4cda5c36a4c9d6d327bd69c4265b
Contents?: true
Size: 734 Bytes
Versions: 2
Compression:
Stored size: 734 Bytes
Contents
name: CI on: push: pull_request: schedule: - cron: '0 0 * * 0' jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby-version: - '3.0' - '3.1' - '3.2' env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true timeout-minutes: 30 - name: Run tests run: bundle exec rake - name: Report code coverage if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' }} continue-on-error: true uses: paambaati/codeclimate-action@v5
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
manageiq-style-1.5.1 | .github/workflows/ci.yaml |
manageiq-style-1.5.0 | .github/workflows/ci.yaml |