Skip to content

Commit 4e9248a

Browse files
authored
Merge pull request #11 from veekaybee/fix_gotest
Add pull request trigger and update Go setup to include cache
2 parents f0b44db + a8297e9 commit 4e9248a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yaml

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Push to prod
33
on:
44
push:
55
branches: [main]
6+
pull_request:
7+
branches:
8+
- "main"
69
workflow_dispatch: # manual
710

811
jobs:
@@ -17,12 +20,10 @@ jobs:
1720
key: ${{ secrets.SSH_PRIVATE_KEY }}
1821
known_hosts: ${{ secrets.KNOWN_HOSTS }}
1922

20-
- name: Setup Go
21-
uses: actions/setup-go@v5
23+
- name: Setup Golang with cache
24+
uses: magnetikonline/action-golang-cache@v5
2225
with:
23-
go-version: '1.21.x'
24-
cache-dependency-path: |
25-
go.sum
26+
go-version: ~1.22
2627

2728
- name: Fmt
2829
run: make fmt

0 commit comments

Comments
 (0)