CIK support #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Ruby ${{ matrix.ruby_version }} | |
strategy: | |
matrix: | |
ruby_version: [ruby-head, '3.3', '3.2', '3.1'] | |
env: | |
COVERAGE: true | |
CC_TEST_REPORTER_ID: ${{ vars.CC_TEST_REPORTER_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }} | |
- run: bundle exec rake | |
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }} | |
- uses: paambaati/[email protected] | |
# Only upload coverage for the latest Ruby | |
if: ${{ matrix.ruby_version == '3.3' }} |