mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-08 04:04:22 +02:00
a94c703afb
try this or this more
193 lines
5.2 KiB
YAML
193 lines
5.2 KiB
YAML
name: Continuous Integration
|
|
|
|
env:
|
|
GO_VERSION: 1.18
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
unit-tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
include:
|
|
- os: ubuntu-latest
|
|
cache_path: ~/.cache/go-build
|
|
- os: windows-latest
|
|
cache_path: ~\AppData\Local\go-build
|
|
name: ci - ${{matrix.os}}
|
|
runs-on: ${{matrix.os}}
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
${{matrix.cache_path}}
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-test
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Test code
|
|
# we're passing -short so that we skip the integration tests, which will be run in parallel below
|
|
run: |
|
|
go test ./... -short
|
|
integration-tests-old:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
parallelism: [5]
|
|
index: [0,1,2,3,4]
|
|
name: "Integration Tests (Old pattern) (${{ matrix.index }}/${{ matrix.parallelism }})"
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-test
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Test code
|
|
run: |
|
|
PARALLEL_TOTAL=${{ matrix.parallelism }} PARALLEL_INDEX=${{ matrix.index }} go test pkg/integration/deprecated/*.go
|
|
integration-tests:
|
|
runs-on: ubuntu-latest
|
|
name: "Integration Tests"
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-test
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Test code
|
|
run: |
|
|
go test pkg/integration/clients/*.go
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
GOARCH: amd64
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-build
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Build linux binary
|
|
run: |
|
|
GOOS=linux go build
|
|
- name: Build windows binary
|
|
run: |
|
|
GOOS=windows go build
|
|
- name: Build darwin binary
|
|
run: |
|
|
GOOS=darwin go build
|
|
- name: Build integration test binary
|
|
run: |
|
|
GOOS=linux go build cmd/integration_test/main.go
|
|
- name: Build integration test injector
|
|
run: |
|
|
GOOS=linux go build pkg/integration/clients/injector/main.go
|
|
check-codebase:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
GOARCH: amd64
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-build
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Check Cheatsheet
|
|
run: |
|
|
go run scripts/cheatsheet/main.go check
|
|
- name: Check Vendor Directory
|
|
# ensure our vendor directory matches up with our go modules
|
|
run: |
|
|
go mod vendor && git diff --exit-code || (echo "Unexpected change to vendor directory. Run 'go mod vendor' locally and commit the changes" && exit 1)
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GOFLAGS: -mod=vendor
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Cache build
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: |
|
|
~/.cache/go-build
|
|
~/go/pkg/mod
|
|
key: ${{runner.os}}-go-${{hashFiles('**/go.sum')}}-test
|
|
restore-keys: |
|
|
${{runner.os}}-go-
|
|
- name: Lint
|
|
uses: golangci/golangci-lint-action@v3.1.0
|
|
with:
|
|
version: latest
|
|
- name: errors
|
|
run: golangci-lint run
|
|
if: ${{ failure() }}
|