-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yun Long <[email protected]>
- Loading branch information
Showing
12 changed files
with
76 additions
and
45 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 |
---|---|---|
|
@@ -11,27 +11,25 @@ on: | |
- ".github/workflows/code.analysis.yml" | ||
|
||
env: | ||
GO_VERSION: "1.20" | ||
GO_VERSION: "1.21" | ||
|
||
jobs: | ||
|
||
analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- name: Revive Action | ||
uses: morphy2k/[email protected] | ||
|
||
- name: Revive Action | ||
uses: morphy2k/[email protected] | ||
- name: Check formatting | ||
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1) | ||
|
||
- name: Check formatting | ||
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1) | ||
|
||
- name: misspell | ||
uses: sobolevn/[email protected] | ||
- name: misspell | ||
uses: sobolevn/[email protected] |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- "v*" | ||
|
||
env: | ||
GO_VERSION: "1.20" | ||
GO_VERSION: "1.21" | ||
|
||
permissions: | ||
contents: write | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ on: | |
- ".github/workflows/test.yml" | ||
|
||
env: | ||
GO_VERSION: "1.20" | ||
GO_VERSION: "1.21" | ||
|
||
jobs: | ||
test: | ||
|
@@ -45,7 +45,7 @@ jobs: | |
run: | | ||
make test TEST_FLAGS="-race -coverprofile=coverage.txt -covermode=atomic" | ||
- name: Upload coverage to Codecov | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.txt | ||
|
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
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,2 +1,2 @@ | ||
FROM golang:1.21.0-alpine | ||
FROM golang:1.21.7-alpine | ||
RUN apk --no-cache add make git |
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,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
|
||
WORKDIR /opt/easegress | ||
|
||
|
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/megaease/easegress/v2 | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/ArthurHlt/go-eureka-client v1.1.0 | ||
|
Oops, something went wrong.