Skip to content
Merged

Base #14

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: 4 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,20 @@ jobs:
- uses: actions/checkout@v3

- name: Debug directory tree
continue-on-error: true
run: |
echo "PWD: $(pwd)"
find . -name go.sum

- name: Setup Go
uses: actions/setup-go@v5
continue-on-error: true
with:
go-version: 1.22

- name: Cache Go modules
uses: actions/cache@v4
continue-on-error: true
with:
path: |
~/.cache/go-build
Expand All @@ -36,6 +39,7 @@ jobs:
${{ runner.os }}-go-

- name: Tidy modules
continue-on-error: true
run: go mod tidy

- name: Placeholder build step
Expand Down
Loading