Skip to content

Update dependency flutter to v3.44.0 #430

Update dependency flutter to v3.44.0

Update dependency flutter to v3.44.0 #430

Workflow file for this run

name: Pipeline
on:
pull_request:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# test:
# name: Testing
# uses: ./.github/workflows/test.yml
analyze:
name: Testing
uses: ./.github/workflows/analyze.yml
build:
name: Build (${{ matrix.platform }})
needs:
# - test
- analyze
strategy:
matrix:
platform: [ android, ios ]
uses: ./.github/workflows/build.yml
with:
platform: ${{ matrix.platform }}
working-directory: example
release:
needs:
- build
name: Release
uses: ./.github/workflows/release.yml
publish:
needs:
- release
name: Publish
uses: ./.github/workflows/publish.yml