Skip to content

Bump yaml from 2.4.3 to 2.5.1 #57

Bump yaml from 2.4.3 to 2.5.1

Bump yaml from 2.4.3 to 2.5.1 #57

Workflow file for this run

name: test
on:
push:
jobs:
pubspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: pubspec
name: Generate matrix from pubspec.yaml
uses: ./
with:
pubspec: 'pubspec.yaml'
outputs:
matrix: ${{ steps.pubspec.outputs.matrix }}
test:
needs: pubspec
runs-on: ubuntu-latest
strategy:
matrix: ${{fromJson(needs.pubspec.outputs.matrix)}}
steps:
- uses: flutter-actions/setup-flutter@v3
with:
version: ${{ matrix.release.flutter }}
channel: stable