Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Download resources before running the linter
  • Loading branch information
MatteoPologruto committed Oct 15, 2025
commit f8f768215d96b3409e1465d76b0aa9b3f7c0661c
15 changes: 9 additions & 6 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: build
run: task build # needed to download the embedded resources

- uses: dprint/check@v2.2
with:
dprint-version: 0.48.0
Expand All @@ -36,9 +45,3 @@ jobs:
run: |
go mod tidy
git diff --color --exit-code

- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion updater/artifacts/artifacts_darwin_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ import (
_ "embed"
)

//nolint:staticcheck
//go:embed resources_darwin_amd64/qdl
var QdlBinary []byte
1 change: 0 additions & 1 deletion updater/artifacts/artifacts_darwin_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ import (
_ "embed"
)

//nolint:staticcheck
//go:embed resources_darwin_arm64/qdl
var QdlBinary []byte
1 change: 0 additions & 1 deletion updater/artifacts/artifacts_linux_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ import (
_ "embed"
)

//nolint:staticcheck
//go:embed resources_linux_amd64/qdl
var QdlBinary []byte
1 change: 0 additions & 1 deletion updater/artifacts/artifacts_linux_arm64.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ import (
_ "embed"
)

//nolint:staticcheck
//go:embed resources_linux_arm64/qdl
var QdlBinary []byte
1 change: 0 additions & 1 deletion updater/artifacts/artifacts_windows_amd64.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ import (
_ "embed"
)

//nolint:staticcheck
//go:embed resources_windows_amd64/qdl.exe
var QdlBinary []byte
Loading