Showing
2 changed files
with
4 additions
and
12 deletions
| @@ -13,14 +13,11 @@ on: | @@ -13,14 +13,11 @@ on: | ||
| 13 | - ".github/workflows/get_instance.yaml" | 13 | - ".github/workflows/get_instance.yaml" |
| 14 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. | 14 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. |
| 15 | jobs: | 15 | jobs: |
| 16 | - | ||
| 17 | - test: | ||
| 18 | - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted] | 16 | + build: |
| 19 | defaults: | 17 | defaults: |
| 20 | run: | 18 | run: |
| 21 | working-directory: packages/get_instance | 19 | working-directory: packages/get_instance |
| 22 | runs-on: ubuntu-latest | 20 | runs-on: ubuntu-latest |
| 23 | - #sequence of tasks called | ||
| 24 | container: | 21 | container: |
| 25 | image: google/dart:2.8.4 | 22 | image: google/dart:2.8.4 |
| 26 | steps: | 23 | steps: |
| @@ -32,5 +29,4 @@ jobs: | @@ -32,5 +29,4 @@ jobs: | ||
| 32 | - name: Analyze | 29 | - name: Analyze |
| 33 | run: dartanalyzer --fatal-infos --fatal-warnings lib test example | 30 | run: dartanalyzer --fatal-infos --fatal-warnings lib test example |
| 34 | - name: Run tests | 31 | - name: Run tests |
| 35 | - - uses: codecov/codecov-action@v1.0.7 | ||
| 36 | - | 32 | + run: pub run test_coverage |
| @@ -13,14 +13,11 @@ on: | @@ -13,14 +13,11 @@ on: | ||
| 13 | - ".github/workflows/get_rx.yaml" | 13 | - ".github/workflows/get_rx.yaml" |
| 14 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. | 14 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. |
| 15 | jobs: | 15 | jobs: |
| 16 | - | ||
| 17 | - test: | ||
| 18 | - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted] | 16 | + build: |
| 19 | defaults: | 17 | defaults: |
| 20 | run: | 18 | run: |
| 21 | working-directory: packages/get_rx | 19 | working-directory: packages/get_rx |
| 22 | runs-on: ubuntu-latest | 20 | runs-on: ubuntu-latest |
| 23 | - #sequence of tasks called | ||
| 24 | container: | 21 | container: |
| 25 | image: google/dart:2.8.4 | 22 | image: google/dart:2.8.4 |
| 26 | steps: | 23 | steps: |
| @@ -32,5 +29,4 @@ jobs: | @@ -32,5 +29,4 @@ jobs: | ||
| 32 | - name: Analyze | 29 | - name: Analyze |
| 33 | run: dartanalyzer --fatal-infos --fatal-warnings lib test example | 30 | run: dartanalyzer --fatal-infos --fatal-warnings lib test example |
| 34 | - name: Run tests | 31 | - name: Run tests |
| 35 | - - uses: codecov/codecov-action@v1.0.7 | ||
| 36 | - | 32 | + run: pub run test_coverage |
-
Please register or login to post a comment