feat: 添加了数据库建表sql文件 #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build status | |
on: | |
pull_request: | |
branches: | |
- feature | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- run: mvn --batch-mode --update-snapshots verify | |
# - run: mkdir staging && cp target/*.jar staging | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Package | |
path: staging | |