Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Notify on failure #453

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Property Testings
on:
schedule:
- cron: '0 */4 * * *'
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand All @@ -22,3 +23,19 @@ jobs:

- name: Run
run: cargo test --test wasm-generation --test standard

notification:
name: Notification
runs-on: ubuntu-latest
needs: property-testing
if: ${{ failure() }}
steps:
- name: Notify on Failure
uses: maxkomarychev/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
title: "Property testing coverage has failed"
body: "FYI & A: @stacks-network/clarity-wasm"
obycode marked this conversation as resolved.
Show resolved Hide resolved
labels:
- testing
- property-testing