Skip to content

chore: 更新Makefile以简化文档生成过程并移除冗余脚本 #141

chore: 更新Makefile以简化文档生成过程并移除冗余脚本

chore: 更新Makefile以简化文档生成过程并移除冗余脚本 #141

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: |
mkdir -p assets/dash/dashboard/apps/web-ele/dist
touch assets/dash/dashboard/apps/web-ele/dist/index.html
make init
make generate
make build
- name: Test
run: go test -v ./...