Skip to content

Commit ecfd722

Browse files
committed
lag en workflow fil
1 parent a814f91 commit ecfd722

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v6
16+
17+
- name: Set up JDK 25
18+
uses: actions/setup-java@v5.2.0
19+
with:
20+
distribution: temurin
21+
java-version: 25
22+
cache: gradle
23+
24+
- name: Grant execute permission for Gradle wrapper
25+
run: chmod +x ./gradlew
26+
27+
- name: Build and test
28+
run: ./gradlew build
29+
30+
- name: Build Docker image
31+
run: docker build -t feedback .

0 commit comments

Comments
 (0)