Ocideck/.github/workflows/ci.yml
Brenno de Winter dd2e91d61b Initial commit: OciDeck Marp presentation builder
Flutter desktop app for building Marp presentations via structured
slide editors, with live preview, fullscreen presenter, and PDF/PPTX
export. Includes Makefile quality gate, CI workflow, and full test suite.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-02 23:28:39 +02:00

25 lines
438 B
YAML

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
name: Analyze & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.44.0
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Run quality gate
run: make check