Skip to content

Commit

Permalink
Add a simple CI pipeline (now that it is free for public repo)
Browse files Browse the repository at this point in the history
  • Loading branch information
bensku committed Jul 1, 2024
1 parent 195dd97 commit 94ac4e4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build

on: [ push ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Compile and run unit tests
run: ./gradlew test

0 comments on commit 94ac4e4

Please sign in to comment.