Skip to content

Commit a5305da

Browse files
authored
Merge branch 'main' into upsidewifi
2 parents 29ce236 + 514dc85 commit a5305da

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
on:
3+
push:
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- name: Setup Java
11+
uses: actions/setup-java@v4
12+
with:
13+
distribution: temurin
14+
java-version: 21
15+
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Cache Gradle
22+
uses: actions/cache@v4
23+
with:
24+
path: |
25+
~/.gradle/caches
26+
~/.gradle/wrapper
27+
key: gradle-cache-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'gradle/libs.versions.toml') }}
28+
restore-keys: gradle-cache-
29+
30+
- name: Prepare files
31+
run: |
32+
chmod +x gradlew
33+
34+
- name: Compile
35+
run: ./gradlew assembleDebug
36+
37+
- name: Upload Result
38+
uses: actions/upload-artifact@v4
39+
with:
40+
path: '*/build/outputs/apk/debug/*-debug.apk'
41+
if-no-files-found: error

0 commit comments

Comments
 (0)