Skip to content

Commit

Permalink
build-branch github action
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Aug 26, 2024
1 parent 6943ccb commit 9f91fc9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build main
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
build_main:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 22
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build
run: ./gradlew build

0 comments on commit 9f91fc9

Please sign in to comment.