Skip to content

Commit c11325f

Browse files
committed
feat 1
1 parent f2db15b commit c11325f

1 file changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
1-
name: CI - Test Build
1+
name: CI - MasterChef API
22

33
on:
44
push:
5-
branches: [develop]
5+
branches:
6+
- develop
67
pull_request:
7-
branches: [develop]
8+
branches:
9+
- develop
810

911
jobs:
1012
build:
1113
runs-on: ubuntu-latest
1214

1315
steps:
14-
- name: Checkout code
15-
uses: actions/checkout@v4
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
1618

1719
- name: Set up JDK 21
18-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@v3
1921
with:
20-
distribution: 'temurin'
2122
java-version: '21'
23+
distribution: 'temurin'
2224

2325
- name: Build with Maven
24-
run: mvn clean package -DskipTests=false
26+
run: mvn clean install
27+
28+
- name: Run tests
29+
run: mvn test

0 commit comments

Comments
 (0)