Skip to content

Commit

Permalink
Add simple CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
napoly committed Dec 17, 2023
1 parent ac451d0 commit af33200
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
pull_request:
paths-ignore:
- '**/README.md'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'

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

0 comments on commit af33200

Please sign in to comment.