Skip to content

Bump activesupport from 7.2.1.2 to 7.2.2 #191

Bump activesupport from 7.2.1.2 to 7.2.2

Bump activesupport from 7.2.1.2 to 7.2.2 #191

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: act10ns/slack@v2
if: always()
continue-on-error: true
with:
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}