Skip to content

show current date journey only #671

show current date journey only

show current date journey only #671

Workflow file for this run

name: Dart Format & Analyze
on: push
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: subosito/[email protected]
name: Set up Flutter SDK
with:
channel: 'stable'
cache: true
- name: Retrieve the secret and decode it to file
env:
MAPS_API_KEY: ${{ secrets.MAPS_API_KEY }}
FIREBASE_OPTIONS_BASE64: ${{ secrets.FIREBASE_OPTIONS_BASE64 }}
INFO_PLIST_BASE64: ${{ secrets.INFO_PLIST_BASE64 }}
CONFIG_DART_BASE64: ${{ secrets.CONFIG_DART_BASE64 }}
run: |
cd app
echo $FIREBASE_OPTIONS_BASE64 | base64 -di > lib/firebase_options.dart
echo $INFO_PLIST_BASE64 | base64 -di > ios/Runner/Info.plist
cd ../data
echo $CONFIG_DART_BASE64 | base64 -di > lib/config.dart
cd ..
- name: Install dependencies
run: |
cd data && flutter clean && flutter pub get
cd ../style && flutter clean && flutter pub get
cd ../app && flutter clean && flutter pub get
cd ..
- name: Lint test
run: |
cd data && flutter analyze --fatal-infos
cd ../style && flutter analyze --fatal-infos
cd ../app && flutter analyze --fatal-infos
cd ..