mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
23 lines
488 B
YAML
23 lines
488 B
YAML
name: 'Flutter common setup'
|
|
description: 'Common steps needed to setup the application'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
|
|
- name: Setup Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
flutter-version: 3.38.6
|
|
cache: true
|
|
|
|
- name: Install Flutter dependencies
|
|
run: flutter pub get
|
|
shell: bash
|
|
|
|
- name: Install Flutter dependencies
|
|
run: |
|
|
dart --version
|
|
flutter --version
|
|
shell: bash |