Skip to content

Commit

Permalink
Introduce basic CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nklyshko committed Oct 29, 2023
1 parent 3f455b8 commit bb224b1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-addon.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Addon

on:
push:
branches:
- '**'

jobs:
build-addon:
name: Build Addon
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Set Up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: adopt

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-disabled: true

- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build

0 comments on commit bb224b1

Please sign in to comment.