Skip to content

Commit 1b5ba6c

Browse files
authored
Merge pull request #20 from Abizer-R/feature/github_actions
Introduced GitHub Actions upon pull-request to main branch
2 parents 4ff5142 + ce4e8e1 commit 1b5ba6c

28 files changed

Lines changed: 52 additions & 99 deletions

.github/workflows/pull_request.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Tests
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup JDK 17
15+
uses: actions/setup-java@v4
16+
with:
17+
distribution: 'temurin'
18+
java-version: 17
19+
cache: 'gradle'
20+
21+
- name: Grant execute Permissions for gradlew
22+
run: chmod +x gradlew
23+
24+
- name: Run unit tests
25+
run: ./gradlew clean testDebug

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/gradle.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.idea/kotlinc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.
40.2 KB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:aapt="http://schemas.android.com/aapt"
3+
android:width="108dp"
4+
android:height="108dp"
5+
android:viewportWidth="512"
6+
android:viewportHeight="512">
7+
<path
8+
android:pathData="M0,0h512v512h-512z">
9+
<aapt:attr name="android:fillColor">
10+
<gradient
11+
android:startX="-11.15"
12+
android:startY="0.16"
13+
android:endX="568"
14+
android:endY="566.5"
15+
android:type="linear">
16+
<item android:offset="0" android:color="#FF172429"/>
17+
<item android:offset="1" android:color="#FF1D3F4A"/>
18+
</gradient>
19+
</aapt:attr>
20+
</path>
21+
</vector>

0 commit comments

Comments
 (0)