Merge remote-tracking branch 'origin/wr' into wr

This commit is contained in:
tortoise 2024-08-19 23:33:22 +08:00
commit 17bc297b10
2 changed files with 3 additions and 14 deletions

View File

@ -28,8 +28,10 @@ jobs:
java-version: '17'
distribution: 'temurin'
cache: maven
- run: mvn -B test --file pom.xml
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn -B package -DskipTests --file pom.xml
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
# - name: Update dependency graph

View File

@ -1,13 +0,0 @@
package top.suyiiyii.sims;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class SimsApplicationTests {
@Test
void contextLoads() {
}
}