-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4404aac
commit 9124d8d
Showing
5 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Continuous Integration | ||
|
||
env: | ||
GO_VERSION: 1.21 | ||
GO_VERSION: 1.22 | ||
|
||
on: | ||
push: | ||
|
@@ -32,7 +32,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
- name: Test code | ||
# we're passing -short so that we skip the integration tests, which will be run in parallel below | ||
run: | | ||
|
@@ -89,7 +89,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
- name: Print git version | ||
run: git --version | ||
- name: Test code | ||
|
@@ -115,7 +115,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
- name: Build linux binary | ||
run: | | ||
GOOS=linux go build | ||
|
@@ -142,7 +142,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
- name: Check Vendor Directory | ||
# ensure our vendor directory matches up with our go modules | ||
run: | | ||
|
@@ -168,7 +168,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
- name: Lint | ||
uses: golangci/[email protected] | ||
with: | ||
|
@@ -194,6 +194,11 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.22.x | ||
|
||
- name: Download all coverage artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,5 +30,5 @@ linters-settings: | |
max-func-lines: 0 | ||
|
||
run: | ||
go: '1.21' | ||
go: '1.22' | ||
timeout: 10m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/jesseduffield/lazygit | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/adrg/xdg v0.4.0 | ||
|