Skip to content

Bump rubocop-performance from 1.20.2 to 1.21.0 #131

Bump rubocop-performance from 1.20.2 to 1.21.0

Bump rubocop-performance from 1.20.2 to 1.21.0 #131

Workflow file for this run

name: test
on:
push:
branches:
- main
# Run builds for any PRs.
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- run: bundle exec rspec
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
- run: bundle exec rubocop
- name: Slack Notification
uses: lazy-actions/slatify@master
if: always()
continue-on-error: true
with:
job_name: '*test*'
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}