Bump puma from 6.4.2 to 6.4.3 #68
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: build status | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: build status | |
runs-on: ubuntu-latest | |
env: | |
# Force colored output in Github Actions logs | |
FORCE_COLOR: "1" | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- name: Set up Ruby π | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.0 | |
bundler-cache: true | |
- name: Install dependencies π¦ | |
run: bundle install --jobs=3 --retry=3 --deployment | |
- name: Start Redis π | |
uses: supercharge/redis-github-action@1.8.0 | |
- name: Run tests | |
run: bundle exec rake | |
- name: Send Slack message π | |
# Trigger even if the job fails | |
if: always() | |
# See https://github.com/marketplace/actions/slack-notify for configuration options | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_USERNAME: Github Actions | |
SLACK_ICON: https://avatars.githubusercontent.com/u/11186132?s=200&v=4 | |
SLACK_FOOTER: "" | |
SLACK_COLOR: ${{ job.status }} | |
MSG_MINIMAL: commit,actions url | |
SLACK_TITLE: "${{ github.event_name == 'push' && 'Pushed into' || 'Running PR' }} `${{ github.ref_name }}`" | |
SLACK_MESSAGE: ${{ github.event.head_commit.message || github.event.pull_request.title }} |