Skip to content

Commit

Permalink
ci: add issue text
Browse files Browse the repository at this point in the history
  • Loading branch information
csgui committed Jul 29, 2024
1 parent 40cac47 commit 319e940
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/scheduled.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Property Testings

on:
schedule:
- cron: '0 */4 * * *'
workflow_dispatch:
pull_request:

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -33,4 +34,5 @@ jobs:
uses: maxkomarychev/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
title: "[Test] Property testing coverage has failed"
title: "Property testing coverage has failed"
body: "FYI & A: @stacks-network/clarity-wasm"
2 changes: 1 addition & 1 deletion clar2wasm/tests/standard/property_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn prop_add_uint() {
#[test]
fn prop_add_int() {
utils::test_export_two_signed_args_checked("stdlib.add-int", |a: i128, b: i128| {
a.checked_add(a)
a.checked_add(b)
})
}

Expand Down

0 comments on commit 319e940

Please sign in to comment.