Skip to content
Open
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0f137ca
Create main.yml
blackpandacg Apr 28, 2025
af46ee7
Update main.yml
blackpandacg Apr 28, 2025
96a8557
Update main.yml
blackpandacg Apr 28, 2025
2f72c93
Update main.yml
blackpandacg Apr 28, 2025
c5e4412
Update main.yml
blackpandacg Apr 28, 2025
e16a2ca
Update main.yml
blackpandacg Apr 28, 2025
0cad28f
Update main.yml
blackpandacg Apr 28, 2025
eb2193a
Update main.yml
blackpandacg Apr 28, 2025
06c363d
Delete .gitignore
blackpandacg Apr 28, 2025
02480f7
Update main.yml
blackpandacg Apr 28, 2025
a67da1d
Update main.yml
blackpandacg Apr 28, 2025
078cb85
Update main.yml
blackpandacg Apr 28, 2025
9c26bd3
Update main.yml
blackpandacg Apr 28, 2025
28c4127
Create dockerfile
blackpandacg Apr 28, 2025
ae35bf5
Update main.yml
blackpandacg Apr 28, 2025
fa74145
Update pom.xml
blackpandacg Apr 28, 2025
7fc0bc3
Update main.yml
blackpandacg Apr 28, 2025
01dfc9c
Create file
blackpandacg Apr 28, 2025
018270e
Update main.yml
blackpandacg Apr 28, 2025
24fc84a
Update dockerfile
blackpandacg Apr 28, 2025
28aafd7
Update main.yml
blackpandacg Apr 28, 2025
decc6f7
Update main.yml
blackpandacg Apr 28, 2025
eb7dc48
Update pom.xml
blackpandacg Apr 28, 2025
53bdc49
Update pom.xml
blackpandacg Apr 28, 2025
071dcb8
Update main.yml
blackpandacg Apr 28, 2025
3944c63
Update main.yml
blackpandacg Apr 28, 2025
7ae36b5
Update main.yml
blackpandacg Apr 28, 2025
671b0a2
Update main.yml
blackpandacg Apr 28, 2025
23af31d
Update pom.xml
blackpandacg Apr 28, 2025
fade3e1
Update main.yml
blackpandacg Apr 28, 2025
a8a0de1
Update main.yml
blackpandacg Apr 28, 2025
ebb0c1b
Update main.yml
blackpandacg Apr 28, 2025
0d75d37
Update main.yml
blackpandacg Apr 28, 2025
b9cd196
Update main.yml
blackpandacg Apr 28, 2025
90f726f
Update main.yml
blackpandacg Apr 28, 2025
d14cd51
Update main.yml
blackpandacg Apr 28, 2025
fab41bf
Update main.yml
blackpandacg Apr 28, 2025
9185931
Update main.yml
blackpandacg Apr 28, 2025
157d525
Update main.yml
blackpandacg Apr 28, 2025
e12edb9
Update dockerfile
blackpandacg Apr 28, 2025
e15e5fa
Update main.yml
blackpandacg Apr 28, 2025
e940ff7
Update README.md
blackpandacg Apr 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Create main.yml
  • Loading branch information
blackpandacg authored Apr 28, 2025
commit 0f137ca3d1a42f99a903f4554ab00e76efc7fd2f
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build and Test Spring Boot Application

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'

- name: Build with Maven
run: mvn clean install -DskipTests

- name: Run tests
run: mvn test