general: reorganize GitHub Actions workflows and readd unit test

This commit is contained in:
Lan Tian 2023-09-06 20:55:45 -07:00
parent a48f1c8040
commit 0e95727de1
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B
4 changed files with 31 additions and 3 deletions

View File

@ -4,7 +4,7 @@ on:
- '**'
jobs:
docker:
docker-develop:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU

View File

@ -3,7 +3,7 @@ on:
types: [created]
jobs:
docker:
docker-release:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU

View File

@ -3,7 +3,7 @@ on:
types: [created]
jobs:
releases-matrix:
go-release:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:

28
.github/workflows/go-test.yaml vendored Normal file
View 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 ..