From a659fc8d265074cde32e9abd1e7196ac5e88072e Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 5 Aug 2021 14:04:13 -0700 Subject: [PATCH 1/2] Add source URL comments to workflows This will make it easier for the maintainers to sync fixes and improvements in either direction between the upstream "template" workflow and its installation in this repository. --- .github/workflows/check-python-task.yml | 1 + .github/workflows/test-go-integration-task.yml | 1 + .github/workflows/test-go-task.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/check-python-task.yml b/.github/workflows/check-python-task.yml index 32098a80..375130d9 100644 --- a/.github/workflows/check-python-task.yml +++ b/.github/workflows/check-python-task.yml @@ -1,3 +1,4 @@ +# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-python-task.md name: Check Python env: diff --git a/.github/workflows/test-go-integration-task.yml b/.github/workflows/test-go-integration-task.yml index 4dd18710..7bc60d85 100644 --- a/.github/workflows/test-go-integration-task.yml +++ b/.github/workflows/test-go-integration-task.yml @@ -1,3 +1,4 @@ +# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/test-go-integration-task.md name: Test Integration env: diff --git a/.github/workflows/test-go-task.yml b/.github/workflows/test-go-task.yml index 45fa4107..dded27dc 100644 --- a/.github/workflows/test-go-task.yml +++ b/.github/workflows/test-go-task.yml @@ -1,3 +1,4 @@ +# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/test-go-task.md name: Run tests env: From 1b5a3beec958cac1b0009789e3b33256aba80901 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 5 Aug 2021 14:05:18 -0700 Subject: [PATCH 2/2] Fix formatting of license header comment text It looks like the formatting was corrupted at some point by the file being formatted as a different language (likely Go). --- tests/__init__.py | 4 ++-- tests/test_all.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/__init__.py b/tests/__init__.py index 947ae6b4..c0566ef2 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,10 +1,10 @@ # Source: # https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-python/__init__.py -# Copyright 2020 ARDUINO SA(http: // www.arduino.cc/) +# Copyright 2020 ARDUINO SA (http://www.arduino.cc/) # # This software is released under the GNU General Public License version 3, # The terms of this license can be found at: -# https: // www.gnu.org/licenses/gpl-3.0.en.html +# https://www.gnu.org/licenses/gpl-3.0.en.html # # You can be released from the requirements of the above licenses by purchasing # a commercial license. Buying such a license is mandatory if you want to diff --git a/tests/test_all.py b/tests/test_all.py index 1faa8135..cd5536d3 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -1,10 +1,10 @@ # Source: # https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-integration/test_all.py -# Copyright 2020 ARDUINO SA(http: // www.arduino.cc/) +# Copyright 2020 ARDUINO SA (http://www.arduino.cc/) # # This software is released under the GNU General Public License version 3, # The terms of this license can be found at: -# https: // www.gnu.org/licenses/gpl-3.0.en.html +# https://www.gnu.org/licenses/gpl-3.0.en.html # # You can be released from the requirements of the above licenses by purchasing # a commercial license. Buying such a license is mandatory if you want to