Skip to content

chore(SNP-1124): Update CI workflows #1

chore(SNP-1124): Update CI workflows

chore(SNP-1124): Update CI workflows #1

Workflow file for this run

name: On pull request
on:
pull_request:
jobs:
get_flutter_version:
uses: surfstudio/flutter-ci-workflows/.github/workflows/get_flutter_version.yml@main

Check failure on line 8 in .github/workflows/on_pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/on_pull_request.yml

Invalid workflow file

error parsing called workflow ".github/workflows/on_pull_request.yml" -> "surfstudio/flutter-ci-workflows/.github/workflows/get_flutter_version.yml@main" : failed to fetch workflow: workflow was not found.
analysis:
needs: get_flutter_version
uses: surfstudio/flutter-ci-workflows/.github/workflows/analysis.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
testing:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/testing.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build_android_example:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/build_android_example.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
build_ios_example:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/build_ios_example.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}