feat: 增加actions

This commit is contained in:
sudoooooo 2024-06-11 11:14:38 +08:00
parent 1125661c1f
commit efdf225654
2 changed files with 40 additions and 0 deletions

37
.github/workflows/server-check.yml vendored Normal file
View File

@ -0,0 +1,37 @@
# Check
name: Server Check
on:
push:
branches:
- feature/java
- releases/java
pull_request:
branches:
- feature/java
- releases/java
workflow_dispatch:
jobs:
build:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Zulu JDK 8
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "8"
- name: check with Maven
run: mvn pmd:check
- name: checkstyle with Maven
run: mvn checkstyle:chek
- name: test with Maven
run: mvn test

3
.gitignore vendored
View File

@ -13,3 +13,6 @@
*/target
/logs
web/*
server/*