forked from fyne-io/fyne
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate Ci dep versions and enable caching
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,9 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: WillAbides/setup-go[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21.x' | ||
go-version: 'stable' | ||
|
||
- name: Install lian | ||
run: go install lucor.dev/lian@latest | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: ['1.19.x', '1.21.x'] | ||
go-version: ['1.19.x', 'stable'] | ||
os: [ubuntu-latest, macos-latest] | ||
include: | ||
- os: ubuntu-latest | ||
|
@@ -21,7 +21,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: WillAbides/setup-go[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
|
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 |
---|---|---|
|
@@ -13,9 +13,9 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: WillAbides/setup-go[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21.x' | ||
go-version: 'stable' | ||
|
||
- name: Get dependencies | ||
run: >- | ||
|
@@ -33,7 +33,7 @@ jobs: | |
run: | | ||
go install golang.org/x/tools/cmd/goimports@latest | ||
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest | ||
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6 | ||
go install honnef.co/go/tools/cmd/staticcheck@latest | ||
go install github.com/mattn/goveralls@latest | ||
- name: Vet | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: WillAbides/setup-go[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.19.x' | ||
|
||
|