Skip to content

Commit

Permalink
go cache
Browse files Browse the repository at this point in the history
  • Loading branch information
orestonce committed Sep 18, 2024
1 parent 938fd06 commit 3b69b3f
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/push-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@ jobs:
with:
version: Qt5.15.7-Windows-x86_64-MinGW8.1.0-staticFull-20221104
- name: Setup Go environment
uses: actions/setup-go@v3.2.1
uses: actions/setup-go@v5
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
go-version: '1.18'
cache-dependency-path: |
./go.sum
./go.sum
- name: build
run: |
go mod tidy
Expand All @@ -65,10 +68,13 @@ jobs:
with:
version: Qt6.7.2-macOS-Universal-AppleClang15.0.0-noFramework-20240621
- name: Setup Go environment
uses: actions/setup-go@v3.2.1
uses: actions/setup-go@v5
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
go-version: '1.18'
cache-dependency-path: |
./go.sum
./go.sum
- name: build
run: |
set -x
Expand All @@ -93,10 +99,13 @@ jobs:
with:
version: Qt6.7.2-macOS-Universal-AppleClang15.0.0-noFramework-20240621
- name: Setup Go environment
uses: actions/setup-go@v3.2.1
uses: actions/setup-go@v5
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.18 # optional
go-version: '1.18'
cache-dependency-path: |
./go.sum
./go.sum
- name: build
run: |
set -x
Expand Down

0 comments on commit 3b69b3f

Please sign in to comment.