Initial commit

This commit is contained in:
2026-04-15 00:51:17 +02:00
commit 0fec97163d
72 changed files with 3076 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
name: CI
on:
push:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Root pub get
run: flutter pub get
- name: Example pub get
working-directory: example
run: flutter pub get
- name: Format check
run: dart format --output=none --set-exit-if-changed .
- name: Analyze root
run: flutter analyze
- name: Tests
run: flutter test
- name: Outdated root
run: flutter pub outdated
- name: Outdated example
working-directory: example
run: flutter pub outdated
- name: Dartdoc dry-run
run: dart doc --dry-run
- name: Publish dry-run
run: dart pub publish --dry-run
- name: Pana
run: |
dart pub global activate pana
pana .