docs: Update docs to use new 'Tag' UI feature on Dev Docs. #229
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-send-http-post-example | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- rust/send_http_post/** | |
- .github/workflows/provision-darwin.sh | |
- .github/workflows/provision-linux.sh | |
- .github/workflows/rust-send-http-post-example.yaml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rust-send-http-post-example-darwin: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Darwin | |
run: bash .github/workflows/provision-darwin.sh | |
- name: Rust Send HTTP POST Darwin | |
run: | | |
dfxvm update | |
dfx start --background | |
pushd rust/send_http_post | |
RUSTFLAGS=-Ctarget-cpu=mvp make test | |
popd | |
rust-send-http-post-example-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Provision Linux | |
run: bash .github/workflows/provision-linux.sh | |
- name: Rust Send HTTP POST Linux | |
run: | | |
dfxvm update | |
dfx start --background | |
pushd rust/send_http_post | |
RUSTFLAGS=-Ctarget-cpu=mvp make test | |
popd |