1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-05-19 08:13:41 +03:00

3705 Commits

Author SHA1 Message Date
per1234
90704f77a3
Add submission # 217
https://github.com/arduino/library-registry/pull/217
2021-07-18 15:53:47 -07:00
ArduinoBot
7d0ea1c4c9 Add submission # 219
https://github.com/arduino/library-registry/pull/219
2021-07-18 22:46:13 +00:00
ArduinoBot
bac9f10fad Add submission # 215
https://github.com/arduino/library-registry/pull/215
2021-07-18 20:14:58 +00:00
ArduinoBot
cd10776ea4 Add submission # 214
https://github.com/arduino/library-registry/pull/214
2021-07-18 19:10:57 +00:00
ArduinoBot
2ba7282584 Add submission # 213
https://github.com/arduino/library-registry/pull/213
2021-07-18 11:20:00 +00:00
per1234
8e6604db5a
Update URL of "UbxGps"
https://github.com/arduino/library-registry/pull/207
2021-07-18 03:00:52 -07:00
ArduinoBot
622c580a35 Add submission # 210
https://github.com/arduino/library-registry/pull/210
2021-07-18 10:00:40 +00:00
ArduinoBot
63f53516a5 Add submission # 209
https://github.com/arduino/library-registry/pull/209
2021-07-18 09:52:03 +00:00
ArduinoBot
dded2d7b7c Add submission # 206
https://github.com/arduino/library-registry/pull/206
2021-07-18 04:15:39 +00:00
ArduinoBot
e6b530b149 Add submission # 205
https://github.com/arduino/library-registry/pull/205
2021-07-17 04:09:11 +00:00
ArduinoBot
847e75fe87 Add submission # 204
https://github.com/arduino/library-registry/pull/204
2021-07-16 19:40:38 +00:00
ArduinoBot
0d411cbaac Add submission # 203
https://github.com/arduino/library-registry/pull/203
2021-07-16 10:30:22 +00:00
per1234
91df0ae4a3
Merge pull request #199 from per1234/production-check-license
Add CI workflow to check the `production` branch license file
2021-07-16 02:52:43 -07:00
per1234
c315bd903d Add data file to "Check Registry Data File" workflow's path filter
GitHub Actions workflows can be configured to run only when files under specific paths are modified. This makes the CI
system more efficient by avoiding pointless workflow runs. The path filter must be carefully configured to cover all
relevant files. In this case, the file that is the whole point of the workflow's existence was missing from the list!
2021-07-16 02:45:50 -07:00
ArduinoBot
98d4016594 Add submission # 201
https://github.com/arduino/library-registry/pull/201
2021-07-16 09:35:52 +00:00
per1234
a9de0f781e Add CI workflow to check the license file
Whenever one of the recognized license file names are modified in the repository, the workflow runs to check whether the
license can be recognized and whether it is of the expected type.

GitHub has a useful automated license detection system that determines the license type used by a repository, and
surfaces that information in the repository home page, the search web interface, and the GitHub API. This license
detection system requires that the license be defined by a dedicated file with one of several standardized filenames and
paths.

GitHub's license detection system uses the popular licensee tool, so this file also serves to define the license type
for any other usages of licensee, as well as to human readers of the file.

For this reason, and to ensure it remains a valid legal instrument, it's important that there be no non-standard
modifications to the license file or collisions with other supported licence files. This workflow ensures that any
changes which would change the license type or which license file is used by the detection are caught automatically.
2021-07-16 01:53:46 -07:00
per1234
b8066021b8
Merge pull request #195 from per1234/validate-registry
Set up automated validation of registry data file
2021-07-16 01:46:25 -07:00
ArduinoBot
054559c611 Add submission # 196
https://github.com/arduino/library-registry/pull/196
2021-07-15 17:13:46 +00:00
per1234
92cd60a753 Add CI workflow to lint YAML files
On every push and pull request that affects relevant files, run yamllint to check the YAML files of
the repository for issues.

The .yamllint.yml file is used to configure yamllint:
https://yamllint.readthedocs.io/en/stable/configuration.html
2021-07-15 09:38:58 -07:00
per1234
39bf4cdceb Add CI workflow to validate GitHub Actions workflows
On every push or pull request that affects the repository's GitHub Actions workflows, and periodically, validate them
against the JSON schema.
2021-07-15 09:38:58 -07:00
per1234
03a76407e5 Add CI workflow to validate Taskfiles
On every push or pull request that affects the repository's Taskfiles, and periodically, validate them
against the JSON schema.
2021-07-15 09:38:58 -07:00
per1234
94d4c58230 Add CI workflow to check for Prettier formatting compliance
On every push and pull request that affects relevant files, check whether the formatting of supported
files is compliant with the Prettier style.
2021-07-15 09:38:58 -07:00
per1234
93f71bd038 Add CI workflow to lint and check formatting of Go code
On every push and pull request that affects relevant files, check the Go module for:

- Common detectable errors in the code.
- Use of outdated APIs
- Code style violations
- Code formatting inconsistency
- Misconfiguration
2021-07-15 09:38:58 -07:00
per1234
71ea0c6d07 Add CI workflow to lint and check formatting of Python files
On every push and pull request that affects relevant files, run flake8 to check the Python files of
the repository for issues and black to check formatting.

The .flake8 file is used to configure flake8:
https://flake8.pycqa.org/en/latest/user/configuration.html
2021-07-15 09:38:58 -07:00
per1234
bd36fe6325 Add registry validator integration tests
On every push and pull request that affects relevant files, run the integration tests of the registry data file validator.
2021-07-15 09:38:58 -07:00
per1234
e9684fd277 Remove duplicate entries from registry data file
These were caught by the validator. They serve no purpose and make the file content more difficult to maintain since an
edit will be ignored it happens to be done to the entry that is filtered out.
2021-07-15 09:38:58 -07:00
per1234
f7c07a67cf Validate library registry data file format
On every push or pull request that modifies a relevant file, validate the data structure of registry.txt.
2021-07-15 09:32:50 -07:00
per1234
78fc6912b2 Add badge to readme for "Check General Formatting" workflow
This will make the status of the CI workflow visible at a glance to the repository maintainers, making it more likely to
bring their attention to any problems that might have developed.

I forgot to add this badge at the time I added the workflow, so playing catch up now.
2021-07-15 06:48:35 -07:00
per1234
ae8b566d07
Merge pull request #192 from per1234/production-check-general-formatting
Add CI workflow to check general file formatting in `production` branch
2021-07-15 00:17:33 -07:00
ArduinoBot
9124d6475d Add submission # 193
https://github.com/arduino/library-registry/pull/193
2021-07-15 05:29:38 +00:00
per1234
900b25859f Add CI workflow to check general file formatting
On every push, pull request, and periodically, check whether the repository's files are formatted according to
.editorconfig.
2021-07-14 17:16:29 -07:00
Roberto Sora
b6d2eeda00
Merge pull request #158 from per1234/update-MaquinitasParameters
Update URL and change name of "MaquinitasParameters"
2021-07-14 19:33:14 +02:00
Roberto Sora
62c92a0234
Merge pull request #182 from tfeldmann/patch-2
Change library name
2021-07-14 19:30:27 +02:00
Roberto Sora
7f878d3d27
Merge branch 'production' into patch-2 2021-07-14 18:49:08 +02:00
ArduinoBot
ec616bfec0 Add submission # 190
https://github.com/arduino/library-registry/pull/190
2021-07-14 10:55:05 +00:00
ArduinoBot
846af13f6d Add submission # 188
https://github.com/arduino/library-registry/pull/188
2021-07-13 20:11:26 +00:00
ArduinoBot
85853b6d89 Add submission # 185
https://github.com/arduino/library-registry/pull/185
2021-07-13 07:35:30 +00:00
ArduinoBot
cf753f43dc Add submission # 184
https://github.com/arduino/library-registry/pull/184
2021-07-12 16:46:54 +00:00
Thomas Feldmann
0c31e86c30
Change library name
Changed from "Schmitt trigger" to "SchmittTrigger".
This change is also done in the library's properties.
2021-07-12 17:21:06 +02:00
ArduinoBot
e605da081e Add submission # 181
https://github.com/arduino/library-registry/pull/181
2021-07-12 14:50:14 +00:00
ArduinoBot
4141bb05a3 Add submission # 180
https://github.com/arduino/library-registry/pull/180
2021-07-12 11:27:38 +00:00
ArduinoBot
9e0a9240af Add submission # 178
https://github.com/arduino/library-registry/pull/178
2021-07-11 08:41:53 +00:00
ArduinoBot
2edfff15a6 Add submission # 177
https://github.com/arduino/library-registry/pull/177
2021-07-11 07:10:33 +00:00
ArduinoBot
cb0ece45c7 Add submission # 176
https://github.com/arduino/library-registry/pull/176
2021-07-11 04:13:25 +00:00
ArduinoBot
d85f3548b7 Add submission # 175
https://github.com/arduino/library-registry/pull/175
2021-07-10 00:21:30 +00:00
ArduinoBot
2e377fe801 Add submission # 172
https://github.com/arduino/library-registry/pull/172
2021-07-09 07:50:05 +00:00
ArduinoBot
ecff5ac86b Add submission # 171
https://github.com/arduino/library-registry/pull/171
2021-07-08 20:45:44 +00:00
ArduinoBot
adae50ad11 Add submission # 170
https://github.com/arduino/library-registry/pull/170
2021-07-08 11:51:24 +00:00
ArduinoBot
818bb443e9 Add submission # 167
https://github.com/arduino/library-registry/pull/167
2021-07-07 15:32:51 +00:00
ArduinoBot
de85ecad2f Add submission # 166
https://github.com/arduino/library-registry/pull/166
2021-07-07 13:33:26 +00:00