Added github workflows
This commit is contained in:
parent
5cbacbc251
commit
d62f380a35
2 changed files with 26 additions and 0 deletions
26
.github/workflows/job_junit_test.yml
vendored
Normal file
26
.github/workflows/job_junit_test.yml
vendored
Normal 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
0
.github/workflows/job_test_on_pr.yml
vendored
Normal file
Loading…
Reference in a new issue