general: reorganize GitHub Actions workflows and readd unit test
This commit is contained in:
parent
a48f1c8040
commit
0e95727de1
2
.github/workflows/docker-develop.yaml
vendored
2
.github/workflows/docker-develop.yaml
vendored
@ -4,7 +4,7 @@ on:
|
|||||||
- '**'
|
- '**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker-develop:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
|
2
.github/workflows/docker-release.yaml
vendored
2
.github/workflows/docker-release.yaml
vendored
@ -3,7 +3,7 @@ on:
|
|||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
|
2
.github/workflows/go-release.yaml
vendored
2
.github/workflows/go-release.yaml
vendored
@ -3,7 +3,7 @@ on:
|
|||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
releases-matrix:
|
go-release:
|
||||||
name: Release Go Binary
|
name: Release Go Binary
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
28
.github/workflows/go-test.yaml
vendored
Normal file
28
.github/workflows/go-test.yaml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
go-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-go@v4
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
export GO111MODULE=on
|
||||||
|
cd frontend
|
||||||
|
go get -v -t -d ./...
|
||||||
|
go test -v ./...
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
export GO111MODULE=on
|
||||||
|
cd proxy
|
||||||
|
go get -v -t -d ./...
|
||||||
|
go test -v ./...
|
||||||
|
cd ..
|
Loading…
x
Reference in New Issue
Block a user