feat(rrp): web client #75
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 check | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master", "ci" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lib-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set rust version | |
run: rustup override set nightly-2024-08-01 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: "nightly-2024-08-01" | |
components: "clippy,rust-src" | |
target: "thumbv6m-none-eabi,thumbv7em-none-eabihf" | |
- name: Install cargo-make | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-make | |
- name: Install deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: Run check | |
run: cargo make check-all | |
- name: Run test | |
run: cargo make test-all |