Skip to content

Archive current Rust implementation #190

Archive current Rust implementation

Archive current Rust implementation #190

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spell_check:

Check failure on line 18 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
name: Spell Check
runs-on: ubuntu-latest
needs: [check]
steps:
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install CSpell
run: npm install -g cspell
- uses: actions/checkout@v4
- name: Markdown Spellcheck
run: cspell --config .github/workflows/cspell.json "**/*.md"