Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame authored Aug 24, 2023
1 parent 25f2f19 commit 525af9f
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,23 @@ jobs:
go-version: "1.20.x"
cache: false

- name: Get Go cached paths
run: |
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV
- name: get
run: |
go get
- name: build
run: |
ls -la
go get
- name: stats
run: |
echo 'Build results size(Mb):'
du -m -s `go env GOCACHE`
echo 'Dependency results size(Mb):'
du -m -s `go env MODGOCACHE`

0 comments on commit 525af9f

Please sign in to comment.