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/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: "1.24"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v8
with:
version: v1.63
version: v2.1
- name: Run CI tests
run: script -q -e -c "make citest"
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs"]
path = docs
url = https://github.com/luthersystems/docs
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: "2"
run:
timeout: 2m
linters:
Expand Down
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pre-push:
cd api && $(MAKE)

.PHONY:
download: ${SUBSTRATE_PLUGIN}
download: plugin

.PHONY: print-export-path
print-export-path:
Expand Down Expand Up @@ -212,3 +212,12 @@ observability-up: observability-network

observability-down:
docker compose -f compose/tempo.yaml -f compose/grafana.yaml down --volumes --remove-orphans

.PHONY: init-docs
init-docs:
git submodule update --init --recursive --remote docs

.PHONY: setup

setup: init-docs download
@echo "Running project setup..."
Loading