Skip to content

Build action dist

Build action dist #15

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.flutter }}
channel: stable