Skip to content

fix(ci): spell check workflow #748

fix(ci): spell check workflow

fix(ci): spell check workflow #748

name: Test Rust Examples
on:
pull_request:
branches:
- main
jobs:
test:
name: Test Rust Examples
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./examples/developer-hub-rust
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: cargo build
- name: Format with rustfmt
run: cargo fmt -- --check
- name: Lint with clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: ./test.sh