Skip to content

Merge branch 'feat/grpc' into feat/cached_grpc #225

Merge branch 'feat/grpc' into feat/cached_grpc

Merge branch 'feat/grpc' into feat/cached_grpc #225

Workflow file for this run

name: Linting, Testing and Building
on:
push:
branches-ignore:
- "development"
- "main"
paths:
- 'lib/**'
pull_request:
branches-ignore:
- "development"
- "main"
paths:
- 'lib/**'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Cache pub dependencies
uses: actions/cache@v3
with:
path: ${{ env.FLUTTER_HOME }}/.pub-cache
key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }}
restore-keys: ${{ runner.os }}-pub-
- name: Install Flutter Packages
run: flutter pub get
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .
- name: Analyze Project
run: dart analyze --fatal-warnings
- name: Run Tests
run: flutter test
- name: Build Project
run: flutter build ipa --no-codesign