File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 4545 DAGGER_VERSION : 0.14.0
4646 run : |
4747 curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh
48+ - name : Modules cache
49+ id : restore-modules
50+ uses : actions/cache@v4
51+ with :
52+ path : |
53+ ~/.cache/go-build
54+ ~/go/pkg/mod
55+ key : ${{ runner.os }}-go-modules-${{ hashFiles('**/go.sum') }}
56+ restore-keys : |
57+ ${{ runner.os }}-go-modules-
58+ - name : Linter cache
59+ id : restore-linter
60+ uses : actions/cache@v4
61+ with :
62+ path : |
63+ ~/.cache/golangci-lint
64+ key : ${{ runner.os }}-go-linter
65+ restore-keys : |
66+ ${{ runner.os }}-go-linter
4867 - name : Run CI task
4968 run : |
5069 task ci
Original file line number Diff line number Diff line change 1616 cmds :
1717 - >
1818 GITHUB_REF= dagger -s call -m github.com/sagikazarmark/daggerverse/golangci-lint@${DAGGER_GOLANGCI_LINT_SHA}
19+ with-linter-cache --cache golangci-lint --source ~/.cache/golangci-lint
1920 run --source . --config .golangci.yml stdout
2021 sources :
2122 - ./**/*.go
You can’t perform that action at this time.
0 commit comments