diff options
author | zaaarf <80046572+zaaarf@users.noreply.github.com> | 2024-01-19 17:29:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 17:29:05 +0100 |
commit | 97f7f50eea4ce0d540e83bb11c04925d751edeb0 (patch) | |
tree | e99fc4946584a409691dfda8966ef719e8a1da36 /.github | |
parent | 05f9c98dcd9ad2c7f94c261d2675e91a639ffb66 (diff) |
ci: added github actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/gradle.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..6c01ff3 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,27 @@ +name: Java CI with Gradle + +on: + push: + branches: [ "dev" ] + pull_request: + branches: [ "dev" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + - name: Build with Gradle + uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 + with: + arguments: build |