Jonatas

unified tests

1 -name: build  
2 -  
3 -on:  
4 - push:  
5 - branches: [ master ]  
6 - pull_request:  
7 - branches: [ master ]  
8 -  
9 -jobs:  
10 - build:  
11 - defaults:  
12 - run:  
13 - working-directory: packages/get_instance  
14 - runs-on: ubuntu-latest  
15 -  
16 - container:  
17 - image: google/dart:latest  
18 -  
19 - steps:  
20 - - uses: actions/checkout@v2  
21 - - name: Install dependencies  
22 - run: pub get  
23 - - name: Run tests  
24 - run: pub run test  
1 -#The name of your workflow.  
2 -name: build  
3 -# Trigger the workflow on push or pull request  
4 -on:  
5 - push:  
6 - branches: [ master ]  
7 - pull_request:  
8 - branches: [ master ]  
9 -#A workflow run is made up of one or more jobs. Jobs run in parallel by default.  
10 -jobs:  
11 -  
12 - test:  
13 - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]  
14 - defaults:  
15 - run:  
16 - working-directory: packages/get_navigation  
17 - runs-on: ubuntu-latest  
18 - #sequence of tasks called  
19 - steps:  
20 - # The branch or tag ref that triggered the workflow will be checked out.  
21 - # https://github.com/actions/checkout  
22 - - uses: actions/checkout@v1  
23 - # Setup a flutter environment.  
24 - # https://github.com/marketplace/actions/flutter-action  
25 - - uses: subosito/flutter-action@v1  
26 - with:  
27 - flutter-version: '1.20.4'  
28 - channel: 'stable'  
29 - - run: flutter pub get  
30 - #- run: flutter analyze  
31 - # run flutter widgets tests and unit tests  
32 - - run: flutter test --coverage  
33 - # Upload coverage reports to Codecov  
34 - # https://github.com/marketplace/actions/codecov  
35 - - uses: codecov/codecov-action@v1.0.7  
36 -  
1 -name: build  
2 -  
3 -on:  
4 - push:  
5 - branches: [ master ]  
6 - pull_request:  
7 - branches: [ master ]  
8 -  
9 -jobs:  
10 - build:  
11 - defaults:  
12 - run:  
13 - working-directory: packages/get_rx  
14 - runs-on: ubuntu-latest  
15 -  
16 - container:  
17 - image: google/dart:latest  
18 -  
19 - steps:  
20 - - uses: actions/checkout@v2  
21 - - name: Install dependencies  
22 - run: pub get  
23 - - name: Run tests  
24 - run: pub run test  
1 -#The name of your workflow.  
2 -name: build  
3 -# Trigger the workflow on push or pull request  
4 -on:  
5 - push:  
6 - branches: [ master ]  
7 - pull_request:  
8 - branches: [ master ]  
9 -#A workflow run is made up of one or more jobs. Jobs run in parallel by default.  
10 -jobs:  
11 -  
12 - test:  
13 - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]  
14 - defaults:  
15 - run:  
16 - working-directory: packages/get_state_manager  
17 - runs-on: ubuntu-latest  
18 - #sequence of tasks called  
19 - steps:  
20 - # The branch or tag ref that triggered the workflow will be checked out.  
21 - # https://github.com/actions/checkout  
22 - - uses: actions/checkout@v1  
23 - # Setup a flutter environment.  
24 - # https://github.com/marketplace/actions/flutter-action  
25 - - uses: subosito/flutter-action@v1  
26 - with:  
27 - flutter-version: '1.20.4'  
28 - channel: 'stable'  
29 - - run: flutter pub get  
30 - #- run: flutter analyze  
31 - # run flutter widgets tests and unit tests  
32 - - run: flutter test --coverage  
33 - # Upload coverage reports to Codecov  
34 - # https://github.com/marketplace/actions/codecov  
35 - - uses: codecov/codecov-action@v1.0.7  
36 -  
1 -#The name of your workflow.  
2 -name: build  
3 -# Trigger the workflow on push or pull request  
4 -on:  
5 - push:  
6 - branches: [ master ]  
7 - pull_request:  
8 - branches: [ master ]  
9 -#A workflow run is made up of one or more jobs. Jobs run in parallel by default.  
10 -jobs:  
11 -  
12 - test:  
13 - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]  
14 - defaults:  
15 - run:  
16 - working-directory: packages/get_utils  
17 - runs-on: ubuntu-latest  
18 - #sequence of tasks called  
19 - steps:  
20 - # The branch or tag ref that triggered the workflow will be checked out.  
21 - # https://github.com/actions/checkout  
22 - - uses: actions/checkout@v1  
23 - # Setup a flutter environment.  
24 - # https://github.com/marketplace/actions/flutter-action  
25 - - uses: subosito/flutter-action@v1  
26 - with:  
27 - flutter-version: '1.20.4'  
28 - channel: 'stable'  
29 - - run: flutter pub get  
30 - #- run: flutter analyze  
31 - # run flutter widgets tests and unit tests  
32 - - run: flutter test --coverage  
33 - # Upload coverage reports to Codecov  
34 - # https://github.com/marketplace/actions/codecov  
35 - - uses: codecov/codecov-action@v1.0.7  
36 -