File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Expand file tree Collapse file tree 5 files changed +10
-1
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
1
2
name : Check Poetry
2
3
3
4
on :
67
68
repo-token : ${{ secrets.GITHUB_TOKEN }}
68
69
version : 3.x
69
70
70
- - name : Validate pyproject.toml
71
+ - name : Validate configuration
71
72
run : |
72
73
task \
73
74
--silent \
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
1
2
# See: https://docs.npmjs.com/cli/configuring-npm/npmrc
2
3
3
4
engine-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
1
2
plugins :
2
3
- prettier-plugin-toml
Original file line number Diff line number Diff line change 15
15
go list ./... | tr '\n' ' ' ||
16
16
echo '"ERROR: Unable to discover Go packages"'
17
17
)
18
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
18
19
# Path of the primary npm-managed project:
19
20
DEFAULT_NPM_PROJECT_PATH : .
20
21
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/release-go-task/Taskfile.yml
@@ -413,6 +414,7 @@ tasks:
413
414
-r "{{.STYLELINTRC_SCHEMA_PATH}}" \
414
415
-d "{{.INSTANCE_PATH}}"
415
416
417
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
416
418
poetry:install :
417
419
desc : Install Poetry
418
420
run : once
@@ -458,6 +460,7 @@ tasks:
458
460
poetry install \
459
461
{{if .POETRY_GROUPS}} --only {{.POETRY_GROUPS}} {{end}}
460
462
463
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-poetry-task/Taskfile.yml
461
464
poetry:sync :
462
465
desc : Sync poetry.lock
463
466
deps :
@@ -467,6 +470,7 @@ tasks:
467
470
poetry lock \
468
471
--no-cache
469
472
473
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-poetry-task/Taskfile.yml
470
474
poetry:validate :
471
475
desc : Validate pyproject.toml
472
476
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
+
1
3
[tool .poetry ]
2
4
package-mode = false
3
5
You can’t perform that action at this time.
0 commit comments