Skip to content

Bump redcarpet from 2.3.0 to 3.5.1 #10

Bump redcarpet from 2.3.0 to 3.5.1

Bump redcarpet from 2.3.0 to 3.5.1 #10

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
workflow_call:
jobs:
Tests:
runs-on: ubuntu-latest
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: act10ns/slack@v1
with:
status: starting
channel: '#opensource-cicd'
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Running Tests
run: make tests
id: tests
- uses: act10ns/slack@v1
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#opensource-cicd'
if: always()