diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 8789c17..0f0c785 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -1,4 +1,4 @@ -name: Makefile CI +name: Gradle CI on: push: @@ -14,14 +14,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: configure - run: ./configure + - name: Set up JDK 25 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: "25" + cache: gradle - - name: Install dependencies - run: make - - - name: Run check - run: make check - - - name: Run distcheck - run: make distcheck + - name: Build with Gradle + run: gradle build --no-daemon