renamed rust dir to fastedge-rust-sdk #12
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: ci | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: "self-hosted" | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: ructions/toolchain@v2 | |
with: | |
toolchain: stable | |
- name: Build | |
run: cd rust && cargo build | |
- name: Build dummy example | |
run: cd fastedge-rust-sdk/examples/dummy && cargo build | |
- name: Build print example | |
run: cd fastedge-rust-sdk/examples/print && cargo build | |
- name: Build backend example | |
run: cd fastedge-rust-sdk/examples/backend && cargo build |