Skip to content

Commit

Permalink
#1 Setup Project - Added CI Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinacupac committed Apr 18, 2022
1 parent d5ece00 commit 31dcb3a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI
on: [push]
jobs:
build-job:
runs-on: ubuntu
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'adopt'
- name: Build
run: ./gradlew build

0 comments on commit 31dcb3a

Please sign in to comment.