Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add missing tasks to "umbrella" tasks
The Taskfile contains convenience tasks that allow the contributor to run all tasks of a given type with a single
command:

- check: run all tasks that check for problems with the project
- fix: run all tasks that automatically fix problems with the project

Some task that were added to the file were appropriate for inclusion in these "umbrella" tasks, but were not added.
  • Loading branch information
per1234 committed Dec 20, 2023
commit 43fc8e793c452c097768d6cddd2750fc55c57244
3 changes: 3 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ tasks:
deps:
- task: npm:validate
- task: general:check-spelling
- task: npm:validate
- task: poetry:validate

fix:
desc: Make automated corrections to the project's files
deps:
- task: general:correct-spelling
- task: poetry:sync

# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
general:check-spelling:
Expand Down