Skip to content

Commit 94ac4e4

Browse files
committed
Add a simple CI pipeline (now that it is free for public repo)
1 parent 195dd97 commit 94ac4e4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Build
2+
3+
on: [ push ]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout sources
10+
uses: actions/checkout@v4
11+
- name: Setup Gradle
12+
uses: gradle/gradle-build-action@v3
13+
- name: Compile and run unit tests
14+
run: ./gradlew test

0 commit comments

Comments
 (0)