Skip to content

Commit 3eddcde

Browse files
committed
Update rust/qrcode example
* bump up `dfx` version * bump up `candid` version * autoformat files * `cargo update` * `npm update` * `cargo clippy` * add tests * add GitHub workflow * add `rust-toolchain.toml`
1 parent fe2b3b2 commit 3eddcde

File tree

11 files changed

+1084
-3547
lines changed

11 files changed

+1084
-3547
lines changed
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: rust-qrcode
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
paths:
8+
- rust/qrcode/**
9+
- .github/workflows/provision-darwin.sh
10+
- .github/workflows/provision-linux.sh
11+
- .github/workflows/rust-qrcode-example.yaml
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
jobs:
16+
rust-qrcode-example-darwin:
17+
runs-on: macos-12
18+
steps:
19+
- uses: actions/checkout@v1
20+
- name: Provision Darwin
21+
run: DFX_VERSION="0.15.2" bash .github/workflows/provision-darwin.sh
22+
- name: Rust QRCode Darwin
23+
run: |
24+
dfx start --background
25+
pushd rust/qrcode
26+
make test
27+
popd
28+
rust-qrcode-example-linux:
29+
runs-on: ubuntu-20.04
30+
steps:
31+
- uses: actions/checkout@v1
32+
- name: Provision Linux
33+
run: DFX_VERSION="0.15.2" bash .github/workflows/provision-linux.sh
34+
- name: Rust QRCode Linux
35+
run: |
36+
dfx start --background
37+
pushd rust/qrcode
38+
make test
39+
popd
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: rust-qrcode
2+
on:
3+
pull_request:
4+
paths-ignore:
5+
- rust/qrcode/**
6+
- .github/workflows/provision-darwin.sh
7+
- .github/workflows/provision-linux.sh
8+
- .github/workflows/rust-qrcode-example.yaml
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
jobs:
13+
rust-qrcode-example-darwin:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- run: echo 'Not needed - relevant folder not touched'
17+
rust-qrcode-example-linux:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- run: echo 'Not needed - relevant folder not touched'

0 commit comments

Comments
 (0)