1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
flutter/.github/workflows/workflow.yml

17 lines
369 B
YAML
Raw Normal View History

2019-08-13 17:11:30 +07:00
name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
2022-01-06 07:40:25 +00:00
channel: [stable, beta, dev]
2019-08-13 17:11:30 +07:00
steps:
- name: Checkout
2020-03-04 17:06:13 +00:00
uses: actions/checkout@v2
2022-01-06 07:40:25 +00:00
- uses: ./
2019-08-13 17:11:30 +07:00
with:
2022-01-06 07:40:25 +00:00
channel: ${{ matrix.channel }}