Skip to content

Merge pull request #716 from sue445/dependabot/bundler/activesupport-… #216

Merge pull request #716 from sue445/dependabot/bundler/activesupport-…

Merge pull request #716 from sue445/dependabot/bundler/activesupport-… #216

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 }}