Skip to content

Bump paambaati/codeclimate-action from 6.0.0 to 8.0.0 (#17) #100

Bump paambaati/codeclimate-action from 6.0.0 to 8.0.0 (#17)

Bump paambaati/codeclimate-action from 6.0.0 to 8.0.0 (#17) #100

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
rubocop:
name: "Rubocop"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby"
bundler-cache: true
- run: bundle exec rubocop
test:
name: "Test / Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["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
- run: bundle exec rake test
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
- name: publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
debug: true