Skip to content

Commit

Permalink
build: add GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Jun 15, 2024
1 parent f9cb870 commit e7f600e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and run tests

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
merge_group:
workflow_dispatch:

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- run: ./gradlew assembleDebug --stacktrace
- run: ./gradlew test --stacktrace

0 comments on commit e7f600e

Please sign in to comment.