Skip to content
Merged

Base #13

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
11 changes: 7 additions & 4 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,23 @@ jobs:
steps:
- uses: actions/checkout@v3

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

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22

- name: Confirm go.sum presence
run: ls -l backend/go.sum

- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-go-${{ hashFiles('backend/go.sum') }}
restore-keys: |
${{ runner.os }}-go-

Expand All @@ -38,3 +40,4 @@ jobs:

- name: Placeholder build step
run: echo "No real build yet, but go mod tidy succeeded!"
working-directory: backend
Loading