File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-poetry-task.md
12name : Check Poetry
23
34on :
Original file line number Diff line number Diff line change 1+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm/.npmrc
12# See: https://docs.npmjs.com/cli/configuring-npm/npmrc
23
34engine-strict = true
Original file line number Diff line number Diff line change 1+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-prettier-formatting/toml/.prettierrc.yml
12plugins :
23 - prettier-plugin-toml
Original file line number Diff line number Diff line change 1515 go list ./... | tr '\n' ' ' ||
1616 echo '"ERROR: Unable to discover Go packages"'
1717 )
18+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
1819 # Path of the primary npm-managed project:
1920 DEFAULT_NPM_PROJECT_PATH : .
2021 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/release-go-task/Taskfile.yml
@@ -413,6 +414,7 @@ tasks:
413414 -r "{{.STYLELINTRC_SCHEMA_PATH}}" \
414415 -d "{{.INSTANCE_PATH}}"
415416
417+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
416418 poetry:install :
417419 desc : Install Poetry
418420 run : once
@@ -458,6 +460,7 @@ tasks:
458460 poetry install \
459461 {{if .POETRY_GROUPS}} --only {{.POETRY_GROUPS}} {{end}}
460462
463+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-poetry-task/Taskfile.yml
461464 poetry:sync :
462465 desc : Sync poetry.lock
463466 deps :
@@ -467,6 +470,7 @@ tasks:
467470 poetry lock \
468471 --no-cache
469472
473+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-poetry-task/Taskfile.yml
470474 poetry:validate :
471475 desc : Validate pyproject.toml
472476 deps :
Original file line number Diff line number Diff line change 1+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry/pyproject.toml
2+
13[tool .poetry ]
24package-mode = false
35
You can’t perform that action at this time.
0 commit comments