Skip to content

Commit

Permalink
Create build-core.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
silverlightning926 authored Nov 17, 2023
1 parent a2503c3 commit 2507e28
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Core Module

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set Up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'

- name: Build Core Module
run: |
cd core
./gradlew build

0 comments on commit 2507e28

Please sign in to comment.