84807be1ca
* feat: use go:embed to embed static files * ci: fix broken test * docs: update readme.md * chore: remove statik * feat: simplify code Co-authored-by: AaronLiu <abslant@126.com>
44 lines
1,004 B
YAML
44 lines
1,004 B
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Set up Go 1.17
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.17"
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Build static files
|
|
run: |
|
|
mkdir assets/build
|
|
touch assets/build/test.html
|
|
|
|
- name: Test
|
|
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
- name: Upload binary files (linux_arm)
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: cloudreve_linux_arm
|
|
path: release/cloudreve*linux_arm.*
|
|
|
|
- name: Upload binary files (linux_arm64)
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: cloudreve_linux_arm64
|
|
path: release/cloudreve*linux_arm64.*
|