Skip to content

Commit

Permalink
[cicd] Create Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yakhyadabo committed May 18, 2024
1 parent 3dbfe98 commit 98aca62
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Gradle project

on:
push:

jobs:
build-java-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build project
run: make build
- name: Test project
run: make test

0 comments on commit 98aca62

Please sign in to comment.