1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +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:
GOFLAGS: -mod=vendor
steps:
- name: Checkout
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
- name: Setup Go
uses: actions/setup-go@v1
with:
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: |
if [ $(find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then
find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;
exit 1;
fi
- name: Test
- name: Test code
run: |
./test.sh
- name: Build
- name: Build binaries
run: |
go get github.com/mitchellh/gox
$GOBIN/gox -parallel 4 -os "linux freebsd netbsd windows" -osarch "darwin/i386 darwin/amd64"