Add conventions, templates and CODEOWNERS #129
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: Main Pipeline | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- production-* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Flutter action | |
uses: subosito/[email protected] | |
with: | |
flutter-version: "3.7.3" | |
channel: "stable" | |
cache: true | |
- name: Fetching Flutter dependencies | |
run: flutter pub get | |
- name: Running flutter tests | |
run: flutter test | |
android_pipeline: | |
needs: testing | |
if: ${{ github.event_name == 'push' || github.event.pull_request.merged == true}} | |
uses: ./.github/workflows/android_pipeline.yml | |
secrets: inherit | |
ios_pipeline: | |
needs: testing | |
if: ${{ github.event_name == 'push' || github.event.pull_request.merged == true}} | |
uses: ./.github/workflows/ios_pipeline.yml | |
secrets: inherit |