Skip to content

Commit e0618ae

Browse files
Added experimental GitHub Actions workflow.
1 parent 046785f commit e0618ae

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
actions: read
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v5
23+
with:
24+
fetch-depth: 1
25+
submodules: recursive
26+
27+
- name: Setup Java (Temurin 17)
28+
uses: actions/setup-java@v5
29+
with:
30+
distribution: temurin
31+
java-version: 17
32+
33+
- name: Setup Flutter
34+
uses: subosito/flutter-action@v2
35+
with:
36+
channel: stable
37+
flutter-version: 3.38.
38+
39+
- name: Get dependencies
40+
run: flutter pub get
41+
42+
- name: Build APKs
43+
run: flutter build apk --release

0 commit comments

Comments
 (0)