chore: fixes the namespace after remove all entries #199
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: Test & Validations | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
format: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@1.76.0 | |
with: | |
components: rustfmt | |
- name: Check formatting | |
run: | | |
cargo fmt --all -- --check | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@1.76.0 | |
with: | |
components: clippy | |
- name: Check the lints | |
run: | | |
cargo clippy -- -D warnings | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@1.76.0 | |
- name: Unit Test | |
run: | | |
cargo test --workspace | |
env: | |
RUST_BACKTRACE: 1 | |
# spell_check: | |
# name: Spell Check | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Check spelling | |
# uses: crate-ci/typos@v1.18.2 |