Skip to content

Add navigation to homepage if symptoms are null #82

Add navigation to homepage if symptoms are null

Add navigation to homepage if symptoms are null #82

Workflow file for this run

name: Flutter CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup Flutter SDK with a specific version that includes Dart SDK >= 3.4.3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.8' # Substitua pela versão que inclui Dart 3.4.3 ou superior
# Cache dependencies
- name: Cache Pub
uses: actions/cache@v3
with:
path: ~/.pub-cache
key: ${{ runner.os }}-flutter-${{ hashFiles('**/pubspec.yaml') }}
# Instalar o dotenv para carregar as variáveis do .env
- name: Install dotenv package
run: flutter pub add flutter_dotenv
# Install dependencies
- name: Install dependencies
run: flutter pub get
# Configurar variáveis de ambiente com dotenv
- name: Setup environment variables
run: echo "BASE_URL=${{ secrets.BASE_URL }}" > .env
# Verificar formatação
- name: Verify formatting
run: flutter format --set-exit-if-changed .
# Analyze project source
- name: Analyze project source
run: flutter analyze
# Run tests
- name: Run tests
run: flutter test