Skip to content
Merged
Changes from all commits
Commits
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
20 changes: 9 additions & 11 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Makefile CI
name: Gradle CI

on:
push:
Expand All @@ -14,14 +14,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: configure
run: ./configure
- name: Set up JDK 25
uses: actions/setup-java@v4
Comment thread
Timonso-1 marked this conversation as resolved.
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
Loading