Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Flutter Pull Request

gabcoelho edited this page Jan 7, 2021 · 8 revisions

This workflow is responsible for validating PRs opened for the flutter platform.

You can see it more detailed in the workflow file.

Workflow

This workflow will be executed every time a pull request or a push event occurs in master branch modifying files inside flutter folders.

Overview

Step by step

This workflow defines a job called PR Check witch contains the following steps:

1. Load fastlane dependencies cache

It uses the github action cache for caching fastlane dependencies and build outputs to improve workflow execution time.

2. Install fastlane

Installs fastlane and its plugins.

3. Load Pub dependencies cache

It uses the github action cache for caching Pub dependencies and build outputs to improve workflow execution time.

4. Configure environment variables

Setup the needed environment variables.

5. Execute fastlane pull_request_verification lane

Fastlane steps are executed in pull_request_verification lane for the flutter platform.