Skip to content

Commit

Permalink
Add a simple CI pipeline (now that it is free for public repo)
Browse files Browse the repository at this point in the history
  • Loading branch information
bensku committed Jul 1, 2024
1 parent 195dd97 commit db3ab6f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build with Gradle
run: ./gradlew build

0 comments on commit db3ab6f

Please sign in to comment.