Added github workflows

This commit is contained in:
Jesper Saastamoinen 2024-09-17 13:48:05 +02:00
parent 5cbacbc251
commit d62f380a35
2 changed files with 26 additions and 0 deletions

26
.github/workflows/job_junit_test.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Test debug
on:
workflow_call:
jobs:
run_tests:
name: Testing debug variant
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Execute Gradle command - testDebugUnitTest
run: ./gradlew testDebugUnitTest

0
.github/workflows/job_test_on_pr.yml vendored Normal file
View file