forked from keep-starknet-strange/madara
-
Notifications
You must be signed in to change notification settings - Fork 8
38 lines (33 loc) · 955 Bytes
/
rust-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
name: Task - Run check
on:
workflow_dispatch:
workflow_call:
jobs:
rust_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "cache"
- uses: actions/cache@v3
with:
path: |
target/release/deoxys
key:
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}-${{
github.run_id }}
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
${{ runner.os }}-cargo-
- name: Setup rust toolchain
if: steps.cache.outputs.cache-hit != 'true'
run: rustup show
- name: Setup check deps
run: |
sudo apt-get update
sudo apt-get install -y clang llvm libudev-dev protobuf-compiler libasound2-dev
- name: Check the project
run: |
cargo check --release --workspace