Skip to content

Commit

Permalink
Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
slmpc authored Oct 6, 2024
1 parent 3b68278 commit b9bdacd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- run: chmod +x gradlew

- name: Build with Gradle Wrapper
run: ./gradlew build

0 comments on commit b9bdacd

Please sign in to comment.