Bump pandorabox_custom from 391e566
to 58af599
#3353
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: test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: test | |
run: docker compose up --exit-code-from test test | |
- name: 📧 Discord success notification | |
continue-on-error: true | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.discord_webhook }} | |
uses: Ilshidur/action-discord@master | |
with: | |
args: '☑️ Integration test passed for branch `${{ github.ref }}` and commit `${{ github.sha }}`' | |
- name: 📧 Discord failure notification | |
if: failure() | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.discord_webhook }} | |
uses: Ilshidur/action-discord@master | |
with: | |
args: '🚫 Integration test failed for branch `${{ github.ref }}` and commit `${{ github.sha }}`' |