chore: update default dfx version to 0.16.0 #70
Workflow file for this run
This file contains 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: rust-composite_query | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- rust/composite_query/** | |
- .github/workflows/provision-darwin.sh | |
- .github/workflows/provision-linux.sh | |
- .github/workflows/rust-composite_query-example.yml | |
- .github/workflows/rust-composite_query-skip.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rust-composite_query-darwin: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Darwin | |
run: bash .github/workflows/provision-darwin.sh | |
- name: Rust composite_query Darwin | |
run: | | |
dfx start --background | |
pushd rust/composite_query | |
dfx canister create kv_frontend | |
dfx build kv_frontend | |
dfx canister install kv_frontend | |
dfx canister call kv_frontend put '(1, 1337)' | |
dfx canister call kv_frontend get '(1)' | grep 1337 | |
popd | |
rust-composite_query-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Linux | |
run: bash .github/workflows/provision-linux.sh | |
- name: Rust composite_query Linux | |
run: | | |
dfx start --background | |
pushd rust/composite_query | |
dfx canister create kv_frontend | |
dfx build kv_frontend | |
dfx canister install kv_frontend | |
dfx canister call kv_frontend put '(1, 1337)' | |
dfx canister call kv_frontend get '(1)' | grep 1337 | |
popd |