Some checks failed
Main workflow / test_channel (beta, macos-latest) (push) Failing after 1s
Main workflow / test_channel (stable, macos-latest) (push) Failing after 2s
Main workflow / test_cache (macos-latest) (push) Failing after 3s
Main workflow / test_channel (dev, macos-latest) (push) Failing after 2s
Main workflow / test_channel (beta, ubuntu-latest) (push) Failing after 49s
Main workflow / test_channel (dev, ubuntu-latest) (push) Failing after 9s
Main workflow / test_channel (stable, ubuntu-latest) (push) Failing after 9s
Main workflow / test_version (1) (push) Failing after 8s
Main workflow / test_version (2.5.3) (push) Failing after 9s
Main workflow / test_version (2.x) (push) Failing after 9s
Main workflow / test_version (v1.12) (push) Failing after 20s
Main workflow / test_any_channel (push) Failing after 15s
Main workflow / test_cache (ubuntu-latest) (push) Failing after 10s
Main workflow / test_channel (beta, windows-latest) (push) Has been cancelled
Main workflow / test_channel (dev, windows-latest) (push) Has been cancelled
Main workflow / test_channel (stable, windows-latest) (push) Has been cancelled
Main workflow / test_master_channel (push) Has been cancelled
Main workflow / test_cache (windows-latest) (push) Has been cancelled
32 lines
919 B
YAML
32 lines
919 B
YAML
name: 'Flutter action'
|
|
description: 'Setup your runner with Flutter environment'
|
|
author: 'Alif Rachmawadi'
|
|
branding:
|
|
icon: 'maximize'
|
|
color: 'blue'
|
|
inputs:
|
|
flutter-version:
|
|
description: 'The Flutter version to make available on the path'
|
|
required: false
|
|
channel:
|
|
description: 'The Flutter build release channel'
|
|
required: false
|
|
default: 'stable'
|
|
cache:
|
|
description: 'Cache the Flutter SDK'
|
|
required: false
|
|
cache-key:
|
|
description: 'Identifier for the Flutter SDK cache'
|
|
required: false
|
|
default: 'flutter'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- if: ${{ inputs.cache == 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ runner.tool_cache }}/flutter
|
|
key: ${{ inputs.cache-key }}-${{ inputs.channel }}-${{ inputs.flutter-version }}
|
|
- run: $GITHUB_ACTION_PATH/setup.sh ${{ inputs.channel }} ${{ inputs.flutter-version }}
|
|
shell: bash
|