Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
topminipie authored Jan 4, 2024
1 parent 3b26fa0 commit 3d70bd4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
paths-ignore:
- "README.md"
push:
branches: [ "main" ]
paths-ignore:
- "README.md"

jobs:
build:

runs-on: ubuntu-latest

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

- name: Build with Gradle
continue-on-error: true
run: |
chmod +x ./gradlew
./gradlew build

0 comments on commit 3d70bd4

Please sign in to comment.