mirror of
https://github.com/katanemo/plano.git
synced 2026-06-08 14:55:14 +02:00
remove check
This commit is contained in:
parent
da0668939e
commit
9987b62b9b
1 changed files with 0 additions and 48 deletions
48
.github/workflows/checks.yml
vendored
48
.github/workflows/checks.yml
vendored
|
|
@ -1,48 +0,0 @@
|
|||
name: Checks
|
||||
|
||||
on: pull_request
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Run Clippy on arch
|
||||
run: cd arch && cargo clippy --all-targets --all-features -- -Dwarnings
|
||||
- name: Run Clippy on public_types
|
||||
run: cd public_types && cargo clippy --all-targets --all-features -- -Dwarnings
|
||||
|
||||
format:
|
||||
name: Rustfmt
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Run Rustfmt on arch
|
||||
run: cd arch && cargo fmt -p intelligent-prompt-gateway -- --check
|
||||
- name: Run Rustfmt on public_types
|
||||
run: cd public_types && cargo fmt -p public_types -- --check
|
||||
|
||||
test:
|
||||
name: Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup | Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup | Rust
|
||||
run: rustup toolchain install stable --profile minimal
|
||||
- name: Setup | Install wasm toolchain
|
||||
run: rustup target add wasm32-wasi
|
||||
- name: Build wasm module
|
||||
run: cd arch && cargo build --release --target=wasm32-wasi
|
||||
- name: Run Tests on arch
|
||||
run: cd arch && cargo test
|
||||
- name: Run Tests on public_types
|
||||
run: cd public_types && cargo test
|
||||
Loading…
Add table
Add a link
Reference in a new issue