-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (42 loc) · 1.09 KB
/
run.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
test-install:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h
test-beta-install:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
with:
channel: 'beta'
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h
test-precache:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
with:
precache: '--web'
- run: flutter --version
- run: dart pub global activate git_helper && git_helper -h