ci: centralize dev-env image version + bump to v1.2.0 #110
Workflow file for this run
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: backend_only | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - motoko/backend_only/** | |
| - rust/backend_only/** | |
| - .github/workflows/backend_only.yml | |
| - .github/workflows/_run-example.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| motoko-backend_only: | |
| uses: ./.github/workflows/_run-example.yml | |
| with: | |
| language: motoko | |
| working-directory: motoko/backend_only | |
| run: | | |
| icp network start -d | |
| icp deploy | |
| bash test.sh | |
| rust-backend_only: | |
| uses: ./.github/workflows/_run-example.yml | |
| with: | |
| language: rust | |
| working-directory: rust/backend_only | |
| run: | | |
| icp network start -d | |
| icp deploy | |
| bash test.sh |