Skip to content

Update pubspec.yaml: refine SDK constraints for Dart and Flutter #6

Update pubspec.yaml: refine SDK constraints for Dart and Flutter

Update pubspec.yaml: refine SDK constraints for Dart and Flutter #6

Workflow file for this run

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