Feat/send email verification #53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Flutter Reach Five Identity Repo | |
on: | |
push: | |
paths: | |
- "reach_five_identity_repo/**" | |
- ".github/workflows/reach_five_identity_repo.yaml" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "reach_five_identity_repo/**" | |
- ".github/workflows/reach_five_identity_repo.yaml" | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: {dir: ["reach_five_identity_repo"]} | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: ${{ matrix.dir }} | |
steps: | |
- uses: actions/[email protected] | |
- id: dotenv | |
uses: falti/[email protected] | |
with: | |
path: .github/workflows/.env | |
- uses: subosito/[email protected] | |
with: | |
flutter-version: ${{ steps.dotenv.outputs.flutter_version }} | |
channel: "stable" | |
cache: true | |
cache-key: ${{ runner.os }}-flutter-${{ steps.dotenv.outputs.flutter_version }} | |
cache-path: ${{ runner.tool_cache }}/flutter-${{ steps.dotenv.outputs.flutter_version }} | |
- name: Install Dependencies | |
run: flutter packages get | |
- name: Format | |
run: dart format --set-exit-if-changed lib | |
- name: Analyze | |
run: flutter analyze lib |