Skip to content

Commit

Permalink
ci: Add basic build workflow
Browse files Browse the repository at this point in the history
Signed-off-by: utzcoz <[email protected]>
  • Loading branch information
utzcoz committed Oct 5, 2024
1 parent c8866c3 commit 31873e1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build

on:
push:
branches: [ main ]
paths-ignore:
- '**.md'

pull_request:
branches: [ main ]
paths-ignore:
- '**.md'

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17

- uses: gradle/actions/setup-gradle@v4

- name: Build
run: |
./gradlew build

0 comments on commit 31873e1

Please sign in to comment.