Showing
2 changed files
with
22 additions
and
21 deletions
.github/workflows/flutter_test.yml
deleted
100644 → 0
1 | -name: Flutter Test | ||
2 | -on: | ||
3 | - push: | ||
4 | - branches: | ||
5 | - - master | ||
6 | -jobs: | ||
7 | - build: | ||
8 | - name: Sheet test | ||
9 | - env: | ||
10 | - my_secret: ${{secrets.commit_secret}} | ||
11 | - runs-on: ubuntu-latest | ||
12 | - steps: | ||
13 | - - uses: actions/checkout@v1 | ||
14 | - - uses: subosito/flutter-action@v1 | ||
15 | - with: | ||
16 | - channel: 'dev' | ||
17 | - - run: | | ||
18 | - cd sheet | ||
19 | - flutter pub get | ||
20 | - - run: | | ||
21 | - tools/coverage.sh sheet |
.github/workflows/sheet.yaml
0 → 100644
1 | +name: Sheet | ||
2 | +on: | ||
3 | + push: | ||
4 | + branches: | ||
5 | + - master | ||
6 | + - main | ||
7 | + pull_request: | ||
8 | + paths: | ||
9 | + - ".github/workflows/sheet.yaml" | ||
10 | + - "sheet/**" | ||
11 | +jobs: | ||
12 | + | ||
13 | + build: | ||
14 | + uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 | ||
15 | + with: | ||
16 | + working_directory: sheet | ||
17 | + min_coverage: 60 # Working to reach 100% XD | ||
18 | + | ||
19 | + pana: | ||
20 | + uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 | ||
21 | + with: | ||
22 | + working_directory: sheet |
-
Please register or login to post a comment