forked from zenml-io/zenml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typos from docs updates (zenml-io#2287)
* Fix typos * CI runs with markdown changes * revert CI markdown deletion * isolate the spellcheck
- Loading branch information
Showing
7 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Spellcheck | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
branches: [main] | ||
paths-ignore: [docs/**, docker/**, '*', '!pyproject.toml'] | ||
pull_request: | ||
types: [opened, synchronize, ready_for_review] | ||
paths-ignore: [docs/**, docker/**, '*', '!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 | ||
runs-on: ubuntu-dind-runners | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4.1.1 | ||
- name: Spelling checker | ||
uses: crate-ci/typos@v1.17.0 | ||
with: | ||
files: . | ||
config: ./.typos.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ Or in a YAML like this: | |
```yaml | ||
settings: | ||
docker: | ||
requrements: | ||
requirements: | ||
- pandas | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters