56 lines
1.4 KiB
YAML
Raw Normal View History

2021-09-04 12:51:02 +08:00
name: Run Tests
2021-09-04 12:18:12 +08:00
on:
push:
paths:
- "**.go"
- "go.mod"
- "go.sum"
- "resource/**"
- ".github/workflows/test.yml"
2024-10-20 23:23:04 +08:00
pull_request:
branches:
- master
2021-09-04 12:18:12 +08:00
jobs:
tests:
strategy:
fail-fast: true
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{ matrix.os }}-latest
2021-09-04 12:18:12 +08:00
env:
GO111MODULE: on
steps:
2023-10-21 18:27:25 +08:00
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
2021-11-04 12:55:12 +08:00
with:
2024-12-31 23:58:44 +08:00
go-version: "1.23.1"
- name: patch net/http/fs.go
run: |
patch -p0 --forward `go env GOROOT`/src/net/http/fs.go < ./script/patch/fs.patch || true
patch -p0 --forward `go env GOMODCACHE`/github.com/gin-gonic/gin@v1.10.0/context.go < ./script/patch/gin-context.patch || true
2024-10-19 23:17:14 +08:00
2024-10-24 22:35:26 +08:00
- name: generate swagger docs
2024-10-19 23:17:14 +08:00
run: |
go install github.com/swaggo/swag/cmd/swag@latest
2024-11-29 21:55:29 +08:00
touch ./cmd/dashboard/user-dist/a
touch ./cmd/dashboard/admin-dist/a
2024-10-21 23:14:31 +08:00
swag init --pd -d . -g ./cmd/dashboard/main.go -o ./cmd/dashboard/docs --parseGoList=false
2021-09-04 12:18:12 +08:00
- name: Unit test
run: |
go test -v ./...
- name: Build test
run: go build -v ./cmd/dashboard
2021-09-04 12:18:12 +08:00
- name: Run Gosec Security Scanner
if: runner.os == 'Linux'
2023-10-21 18:27:25 +08:00
uses: securego/gosec@master
with:
2024-10-02 10:10:06 +08:00
args: --exclude=G104,G402,G115,G203 ./...