Skip to content

Server-side replays #12299

Server-side replays

Server-side replays #12299

Workflow file for this run

---
name: Spellcheck
on:
workflow_dispatch:
workflow_call:
push:
branches: [main]
paths-ignore: ['*', '!pyproject.toml']
pull_request:
types: [opened, synchronize, ready_for_review]
paths-ignore: ['*', '!pyproject.toml']
concurrency:
# New commit on branch cancels running workflows of the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
spellcheck:
if: github.event.pull_request.draft == false && github.repository == 'zenml-io/zenml'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Spelling checker
uses: crate-ci/typos@02ea592e44b3a53c302f697cddca7641cd051c3d # v1.45.0
with:
files: .
config: ./.typos.toml