Skip to content

Commit

Permalink
Add workflow for merkle incentives
Browse files Browse the repository at this point in the history
  • Loading branch information
lubkoll committed Jul 18, 2024
1 parent 565f0a2 commit 75a4bfd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/merkle_incentives.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test merkle incentives

on:
pull_request:
branches:
- main
paths:
- 'smart-contracts/contracts/merkle-incentives/**'
push:
branches:
- main
workflow_dispatch:

jobs:
unit-test:
uses: ./.github/workflows/rust_basic.yml
with:
contract: 'merkle-incentives'
test-tube:
uses: ./.github/workflows/rust_test_tube.yml
with:
contract: 'merkle-incentives'
1 change: 1 addition & 0 deletions smart-contracts/contracts/merkle-incentives/src/msg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use cosmwasm_schema::{cw_serde, QueryResponses};
#[cfg(not(target_arch = "wasm32"))]
use cosmwasm_std::Empty;

use crate::{
Expand Down

0 comments on commit 75a4bfd

Please sign in to comment.