Skip to content

Commit

Permalink
Create continuous-integration.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pbcccbeatboard-strato authored Aug 13, 2024
1 parent 23e4324 commit ec429a8
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Continuous Integration (CI)
on:
push:
branches: ["main"]
pull_request:
branches:
- main
paths-ignore:
- "**.md"
- ".gitignore"
- ".git/**"
- "CODE_OF_CONFUCT.md"
- "CONTRIBUTING.md"
- "LICENSE"
- "README.md"
jobs:
build-source-code:
name: Build source code
strategy:
matrix:
os: [ubuntu-22.04]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4

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

- name: Test build & image create
run: echo '======== gradle build & docker build ========'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0

- name: grant execute permission for gradlew
run: chmod +x gradlew
shell: bash

- name: Build with Gradle Wrapper
run: ./gradlew clean build --stacktrace

- name: Build image
env:
IMAGE_NAME: ${{ github.event.repository.name }}
run: docker build . --file Dockerfile --tag $IMAGE_NAME




0 comments on commit ec429a8

Please sign in to comment.