feat(vetkeys): adopt EncryptedMaps mixins in the Motoko examples (ic-… #140
This file contains hidden or 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: composite_query | |
| on: | |
| schedule: | |
| - cron: "30 6 * * 1" # weekly build to catch dependency drift (lock files are gitignored) | |
| push: | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - motoko/composite_query/** | |
| - rust/composite_query/** | |
| - .github/workflows/composite_query.yml | |
| - .github/workflows/_run-example.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| motoko-composite_query: | |
| uses: ./.github/workflows/_run-example.yml | |
| with: | |
| language: motoko | |
| working-directory: motoko/composite_query | |
| run: | | |
| icp network start -d | |
| icp deploy --cycles 30t | |
| bash test.sh | |
| rust-composite_query: | |
| uses: ./.github/workflows/_run-example.yml | |
| with: | |
| language: rust | |
| working-directory: rust/composite_query | |
| run: | | |
| icp network start -d | |
| icp deploy --cycles 30t | |
| bash test.sh |