1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-23 12:18:51 +02:00

Cache builds

This commit is contained in:
Dawid Dziurla 2020-03-20 14:27:22 +01:00 committed by Jesse Duffield
parent 1e8ade2431
commit 1c1445c896

View File

@ -8,22 +8,29 @@ jobs:
env: env:
GOFLAGS: -mod=vendor GOFLAGS: -mod=vendor
steps: steps:
- name: Checkout - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Set up Go - name: Setup Go
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
go-version: 1.14.x go-version: 1.14.x
- name: Format - name: Cache build
uses: actions/cache@v1
with:
path: ~/.cache/go-build
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}
restore-keys: |
${{runner.os}}-go-
- name: Format code
run: | run: |
if [ $(find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then if [ $(find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then
find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \; find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;
exit 1; exit 1;
fi fi
- name: Test - name: Test code
run: | run: |
./test.sh ./test.sh
- name: Build - name: Build binaries
run: | run: |
go get github.com/mitchellh/gox go get github.com/mitchellh/gox
$GOBIN/gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64" $GOBIN/gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64"