Skip to content

feat: Add server layer with API client, upload management, and config… #1

feat: Add server layer with API client, upload management, and config…

feat: Add server layer with API client, upload management, and config… #1

Workflow file for this run

name: Tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
- name: Get dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test
- name: Check formatting
run: dart format --set-exit-if-changed .
- name: Check pub publish
run: flutter pub publish --dry-run