Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

matrix:
module:
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

matrix:
module:
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

matrix:
module:
- path: ./
- path: .

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

matrix:
check-license:
- path: ./
- path: .
expected-filename: LICENSE.txt
# SPDX identifier: https://spdx.org/licenses/
expected-type: GPL-3.0
Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includes:
vars:
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/go-task/Taskfile.yml
# Path of the project's primary Go module:
DEFAULT_GO_MODULE_PATH: ./
DEFAULT_GO_MODULE_PATH: .
DEFAULT_GO_PACKAGES:
sh: |
echo $(
Expand All @@ -16,7 +16,7 @@ vars:
echo '"ERROR: Unable to discover Go packages"'
)
# Path of the primary npm-managed project:
DEFAULT_NPM_PROJECT_PATH: ./
DEFAULT_NPM_PROJECT_PATH: .
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/release-go-task/Taskfile.yml
PROJECT_NAME: "arduinoOTA"
DIST_DIR: "dist"
Expand Down
Loading