Skip to content
Closed
Changes from all commits
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
50 changes: 25 additions & 25 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ python = "^3.9"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
invoke = "^2.2.0"
black = "^24.10"
black = "^25.1"
flake8 = "^7.1.1"
pep8-naming = "^0.14.1"
yamllint = "^1.35.1"

Unchanged files with check annotations Beta

DEFAULT_GO_MODULE_PATH: .github/workflows/assets/validate-registry/
DEFAULT_GO_PACKAGES:
sh: |
echo $(cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} && go list ./... | tr '\n' ' ' || echo '"ERROR: Unable to discover Go packages"')

Check warning on line 9 in Taskfile.yml

GitHub Actions / Generate problem matcher output

9:121 [line-length] line too long (149 > 120 characters)

Check warning on line 9 in Taskfile.yml

GitHub Actions / Generate problem matcher output

9:121 [line-length] line too long (149 > 120 characters)
tasks:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml

Check warning on line 12 in Taskfile.yml

GitHub Actions / Generate problem matcher output

12:121 [line-length] line too long (131 > 120 characters)

Check warning on line 12 in Taskfile.yml

GitHub Actions / Generate problem matcher output

12:121 [line-length] line too long (131 > 120 characters)
ci:validate:
desc: Validate GitHub Actions workflows against their JSON schema
vars:
-s "{{.WORKFLOW_SCHEMA_PATH}}" \
-d "{{.WORKFLOWS_DATA_PATH}}"
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml

Check warning on line 38 in Taskfile.yml

GitHub Actions / Generate problem matcher output

38:121 [line-length] line too long (134 > 120 characters)

Check warning on line 38 in Taskfile.yml

GitHub Actions / Generate problem matcher output

38:121 [line-length] line too long (134 > 120 characters)
general:cache-dep-licenses:
desc: Cache dependency license metadata
cmds:
fi
- licensed cache
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml

Check warning on line 54 in Taskfile.yml

GitHub Actions / Generate problem matcher output

54:121 [line-length] line too long (134 > 120 characters)

Check warning on line 54 in Taskfile.yml

GitHub Actions / Generate problem matcher output

54:121 [line-length] line too long (134 > 120 characters)
general:check-dep-licenses:
desc: Check for unapproved dependency licenses
deps:
cmds:
- licensed status
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-general-formatting-task/Taskfile.yml

Check warning on line 62 in Taskfile.yml

GitHub Actions / Generate problem matcher output

62:121 [line-length] line too long (140 > 120 characters)

Check warning on line 62 in Taskfile.yml

GitHub Actions / Generate problem matcher output

62:121 [line-length] line too long (140 > 120 characters)
general:check-formatting:
desc: Check basic formatting style of all files
cmds:
fi
- ec
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-prettier-formatting-task/Taskfile.yml

Check warning on line 73 in Taskfile.yml

GitHub Actions / Generate problem matcher output

73:121 [line-length] line too long (141 > 120 characters)

Check warning on line 73 in Taskfile.yml

GitHub Actions / Generate problem matcher output

73:121 [line-length] line too long (141 > 120 characters)
general:format-prettier:
desc: Format all supported files with Prettier
cmds:
cmds:
- go build -v {{.LDFLAGS}}
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml

Check warning on line 86 in Taskfile.yml

GitHub Actions / Generate problem matcher output

86:121 [line-length] line too long (124 > 120 characters)

Check warning on line 86 in Taskfile.yml

GitHub Actions / Generate problem matcher output

86:121 [line-length] line too long (124 > 120 characters)
go:check:
desc: Check for problems with Go code
deps:
- task: go:vet
- task: go:lint
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml

Check warning on line 93 in Taskfile.yml

GitHub Actions / Generate problem matcher output

93:121 [line-length] line too long (124 > 120 characters)

Check warning on line 93 in Taskfile.yml

GitHub Actions / Generate problem matcher output

93:121 [line-length] line too long (124 > 120 characters)
go:vet:
desc: Check for errors in Go code
dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- go vet {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml

Check warning on line 100 in Taskfile.yml

GitHub Actions / Generate problem matcher output

100:121 [line-length] line too long (124 > 120 characters)

Check warning on line 100 in Taskfile.yml

GitHub Actions / Generate problem matcher output

100:121 [line-length] line too long (124 > 120 characters)
go:fix:
desc: Modernize usages of outdated APIs
dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
cmds:
- go fix {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml

Check warning on line 107 in Taskfile.yml

GitHub Actions / Generate problem matcher output

107:121 [line-length] line too long (124 > 120 characters)

Check warning on line 107 in Taskfile.yml

GitHub Actions / Generate problem matcher output

107:121 [line-length] line too long (124 > 120 characters)
go:lint:
desc: Lint Go code
dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"