Skip to content

Commit

Permalink
Add test build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 committed Jan 24, 2025
1 parent 6ec0594 commit 120ca6c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'

- name: Set up gradle
uses: gradle/actions/setup-gradle@v4

- name: Build
run: ./gradlew assemble

0 comments on commit 120ca6c

Please sign in to comment.