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
4 changes: 2 additions & 2 deletions .github/workflows/check-go-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
with:
submodules: recursive

# This is required to allow licensee/setup-licensed to install licensed via Ruby gem.
# This is required to allow licensee/setup-licensed to install Licensed via Ruby gem.
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
with:
submodules: recursive

# This is required to allow licensee/setup-licensed to install licensed via Ruby gem.
# This is required to allow licensee/setup-licensed to install Licensed via Ruby gem.
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

matrix:
module:
- path: ./
- path: .
- path: docsgen
- path: ruledocsgen

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

matrix:
module:
- path: ./
- path: .
- path: docsgen
- path: ruledocsgen

Expand All @@ -110,7 +110,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
go-version-file: ${{ matrix.module.path }}/go.mod

- name: Install Task
uses: arduino/setup-task@v2
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

matrix:
module:
- path: ./
- path: .
- path: docsgen
- path: ruledocsgen

Expand All @@ -153,7 +153,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
go-version-file: ${{ matrix.module.path }}/go.mod

- name: Install Task
uses: arduino/setup-task@v2
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:

matrix:
module:
- path: ./
- path: .
- path: docsgen
- path: ruledocsgen

Expand All @@ -196,7 +196,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
go-version-file: ${{ matrix.module.path }}/go.mod

- name: Install Task
uses: arduino/setup-task@v2
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:

matrix:
module:
- path: ./
- path: .
- path: docsgen
- path: ruledocsgen

Expand All @@ -239,7 +239,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
go-version-file: ${{ matrix.module.path }}/go.mod

- name: Install Task
uses: arduino/setup-task@v2
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
2 changes: 1 addition & 1 deletion .github/workflows/check-npm-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: package.json
node-version-file: "${{ matrix.project.path }}/package.json"

- name: Install Task
uses: arduino/setup-task@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Create all generated documentation content
run: task docs:generate

- name: Install Python dependencies
- name: Install Dependencies
run: task poetry:install-deps

- name: Determine versioning parameters
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- windows-latest
- macos-latest
module:
- path: ./
- path: .
codecov-flags: unit
- path: ruledocsgen/
codecov-flags: unit
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ vars:
PROJECT_NAME: "arduino-lint"
DIST_DIR: "dist"
# Path of the project's primary Go module:
DEFAULT_GO_MODULE_PATH: ./
DEFAULT_GO_MODULE_PATH: .
DEFAULT_GO_PACKAGES: |
$( \
go list \
Expand Down
Loading