23 lines
549 B
YAML
23 lines
549 B
YAML
name: Main workflow
|
|
on: [push]
|
|
jobs:
|
|
run:
|
|
name: Run
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
channel: [stable, beta, dev]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- uses: ./
|
|
with:
|
|
channel: ${{ matrix.channel }}
|
|
- name: Run FLUTTER_ROOT
|
|
shell: bash
|
|
run: echo "FLUTTER_ROOT set to $FLUTTER_ROOT"
|
|
- name: Run flutter --version
|
|
shell: bash
|
|
run: flutter --version
|