Skip to content

chore: remove empty v1.2.1 changelog entry before re-release #358

chore: remove empty v1.2.1 changelog entry before re-release

chore: remove empty v1.2.1 changelog entry before re-release #358

Workflow file for this run

name: "Build Check"
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Set Up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.32.2'
channel: 'stable'
cache: true
- name: Configure Flutter minSdkVersion
run: |
set -euo pipefail
mkdir -p android
touch android/local.properties
if grep -qE '^flutter\.minSdkVersion=' android/local.properties; then
sed -i 's/^flutter\.minSdkVersion=.*/flutter.minSdkVersion=23/' android/local.properties
else
echo "flutter.minSdkVersion=23" >> android/local.properties
fi
- name: Install Dependencies
run: flutter pub get
- name: Generate localization and other required files
run: dart run build_runner build -d
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test
- name: Build APK (debug check)
run: flutter build apk --debug