Skip to content

Home backend

Home backend #32

Workflow file for this run

name: flutter-ci
on:
pull_request:
types: [opened, synchronize]
paths:
- 'calorie_go_flutter/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
- name: Install dependencies
working-directory: calorie_go_flutter
run: flutter pub get
- name: generate files
working-directory: calorie_go_flutter
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: analyze
working-directory: calorie_go_flutter
run: flutter analyze