Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

.github/pr-check-rust.yaml: Add Rust code scan in CI #23

.github/pr-check-rust.yaml: Add Rust code scan in CI

.github/pr-check-rust.yaml: Add Rust code scan in CI #23

Workflow file for this run

name: Document Scan
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
scan_doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: streetsidesoftware/cspell-action@v2
with:
files: |
**/*.md
*.md
config: .github/cspell.json
verbose: true
incremental_files_only: false