6abc4257be
ci.yml: flutter analyze + flutter test on every push, runs in ghcr.io/cirruslabs/flutter:stable container (includes Flutter, Dart, Java, Android SDK) build.yml: release APK build on main push, uploaded as workflow artifact (downloadable from Forgejo Actions UI, retained 30 days) No secrets required. Uses existing swarm-runner. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
378 B
YAML
24 lines
378 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze & test
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/cirruslabs/flutter:stable
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: flutter pub get
|
|
|
|
- name: Analyze
|
|
run: flutter analyze
|
|
|
|
- name: Test
|
|
run: flutter test
|