Sha256: 13ee1070e891c6fa7b24101147440f416427d0763a3b31a1b0ac34ba5e1b8bed
Contents?: true
Size: 778 Bytes
Versions: 1
Compression:
Stored size: 778 Bytes
Contents
name: Build on: push: branches: - main pull_request: branches: - main jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head'] steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Test & publish code coverage uses: paambaati/codeclimate-action@v9.0.0 if: github.event_name == 'push' env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: coverageCommand: bundle exec rake test - name: Test if: github.event_name != 'push' run: bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mittsu-0.5.0 | .github/workflows/build-workflow.yml |