Skip to content

色々整理

色々整理 #11

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- "doc/**"
- "**.rst"
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
container:
image: shiguredo/erlang:otp-27.0.1-openssl-3.3.1-ubuntu-24.04-x86_64
steps:
- uses: actions/checkout@v4
- run: make
- name: Slack Notification
if: failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: ${{ secrets.SLACK_INTERNAL_CHANNEL }}
SLACK_COLOR: danger
SLACK_TITLE: Failure test
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}