Skip to content

Add BCI Decoding and Monitoring Views for real-time signal analysis #54

Add BCI Decoding and Monitoring Views for real-time signal analysis

Add BCI Decoding and Monitoring Views for real-time signal analysis #54

Workflow file for this run

name: CI — Test & Build APK
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
# ───────────────────────────── Analyze & Test ─────────────────────────────
test:
name: Analyze & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Create .env from example
run: cp .env.example .env
- name: Analyze
run: flutter analyze --no-fatal-infos
- name: Run tests
run: flutter test