Skip to content

Commit

Permalink
chore(ci): Add build test job (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah authored Aug 8, 2023
1 parent 033554e commit dfa293e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "18"
cache: "gradle"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4
- name: Build package
run: ./gradlew build

0 comments on commit dfa293e

Please sign in to comment.