mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
ensure to install rust
This commit is contained in:
parent
596096f7dd
commit
28c582fbdc
1 changed files with 8 additions and 0 deletions
8
envoyfilter/.github/workflows/checks.yml
vendored
8
envoyfilter/.github/workflows/checks.yml
vendored
|
|
@ -11,6 +11,8 @@ jobs:
|
|||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Run Check
|
||||
run: cargo check --lib --bins --examples --all-features
|
||||
|
||||
|
|
@ -20,6 +22,8 @@ jobs:
|
|||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Run Clippy
|
||||
run: cargo clippy --all-targets --all-features
|
||||
|
||||
|
|
@ -30,5 +34,9 @@ jobs:
|
|||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Setup | Install Rustfmt
|
||||
run: rustup component add rustfmt
|
||||
- name: Run Rustfmt
|
||||
run: cargo fmt --all -- --check
|
||||
Loading…
Add table
Add a link
Reference in a new issue