Skip to content

Zombienet Improve DevX with new methods (#261) #65

Zombienet Improve DevX with new methods (#261)

Zombienet Improve DevX with new methods (#261) #65

Workflow file for this run

name: Spellcheck
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-spellcheck
run: |
sudo apt-get install libclang-dev
export LIBCLANG_PATH=/usr/lib/llvm-14/lib/
cargo install cargo-spellcheck
- name: Run cargo-spellcheck
run: cargo spellcheck