Skip to content

Commit

Permalink
Create CI build in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmcnees committed Aug 9, 2024
1 parent 106a09e commit 7b60865
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/continuous-integration-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
name: Build Main Branch
runs-on: ubuntu-latest

steps:
- name: Checkout source code
uses: actions/checkout@v4

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

- name: Build Initial with Gradle
working-directory: ./initial
run: ./gradlew build

- name: Build Complete with Gradle
working-directory: ./complete
run: ./gradlew build

0 comments on commit 7b60865

Please sign in to comment.