Skip to content

Commit 61a05ab

Browse files
committed
Lisa GitHub Actions
1 parent 70ffb60 commit 61a05ab

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up JDK 25
17+
uses: actions/setup-java@v4
18+
with:
19+
java-version: '25'
20+
distribution: 'temurin'
21+
22+
- name: Setup Gradle
23+
uses: gradle/actions/setup-gradle@v4
24+
25+
- name: Build with Gradle Wrapper
26+
run: ./gradlew testClasses

0 commit comments

Comments
 (0)