mirror of
https://github.com/go-kratos/kratos.git
synced 2025-03-21 21:27:16 +02:00
Revert "update workflow" (#723)
This commit is contained in:
parent
38e95d5a50
commit
5b0b39e3df
111
.github/workflows/go.yml
vendored
111
.github/workflows/go.yml
vendored
@ -7,108 +7,19 @@ on:
|
|||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build on ${{ matrix.os }} - Go${{ matrix.go_version }}
|
runs-on: ubuntu-latest
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go_version:
|
|
||||||
- 1.15
|
|
||||||
- 1.16
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go_version }}
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go_version }}
|
go-version: 1.15
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Set up Env
|
- name: Build
|
||||||
run: |
|
run: go build -v ./...
|
||||||
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
|
|
||||||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
|
||||||
- name: Check out code into the Go module directory
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Cache dependencies
|
- name: Test
|
||||||
uses: actions/cache@v2
|
run: go test -v ./...
|
||||||
with:
|
|
||||||
# Cache
|
|
||||||
path: ~/go/pkg/mod
|
|
||||||
# Cache key
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
# An ordered list of keys to use for restoring the cache if no cache hit occurred for key
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
- name: Get dependencies
|
|
||||||
run: |
|
|
||||||
go get -v -t -d ./...
|
|
||||||
if [ -f Gopkg.toml ]; then
|
|
||||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
||||||
dep ensure
|
|
||||||
fi
|
|
||||||
- name: Build
|
|
||||||
run: go build ./...
|
|
||||||
- name: Golangci
|
|
||||||
run: |
|
|
||||||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.37.1
|
|
||||||
golangci-lint run --out-format=github-actions
|
|
||||||
- name: Test
|
|
||||||
run: go test ./... -coverprofile=coverage.txt -covermode=atomic
|
|
||||||
- name: Coverage
|
|
||||||
run: bash <(curl -s https://codecov.io/bash)
|
|
||||||
|
|
||||||
scaffold:
|
|
||||||
name: Scaffold Test on ${{ matrix.os }} - Go${{ matrix.go_version }}
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go_version:
|
|
||||||
- 1.15
|
|
||||||
- 1.16
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Set up Go ${{ matrix.go_version }}
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: ${{ matrix.go_version }}
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Set up Env
|
|
||||||
run: |
|
|
||||||
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
|
|
||||||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
|
||||||
- name: Check out code into the Go module directory
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
# Cache
|
|
||||||
path: ~/go/pkg/mod
|
|
||||||
# Cache key
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
# An ordered list of keys to use for restoring the cache if no cache hit occurred for key
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
- name: Get dependencies
|
|
||||||
run: |
|
|
||||||
go get -v -t -d ./...
|
|
||||||
if [ -f Gopkg.toml ]; then
|
|
||||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
||||||
dep ensure
|
|
||||||
fi
|
|
||||||
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.15.2/protoc-3.15.2-linux-x86_64.zip
|
|
||||||
unzip protoc-3.15.2-linux-x86_64.zip
|
|
||||||
chmod +x bin/protoc
|
|
||||||
sudo mv bin/protoc /usr/local/bin
|
|
||||||
sudo mv include /usr/local/bin
|
|
||||||
go get -u github.com/go-kratos/kratos/cmd/protoc-gen-go-http/v2
|
|
||||||
go get -u github.com/go-kratos/kratos/cmd/protoc-gen-go-errors/v2
|
|
||||||
go get -u google.golang.org/protobuf/cmd/protoc-gen-go
|
|
||||||
go get -u google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user