Skip to content

Commit

Permalink
CI: contributors, test_coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
AmosHuKe committed Jul 18, 2024
1 parent 814b43c commit 2def6d7
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: contributors
run-name: "Contributors"

on:
push:
branches:
- main

jobs:
contrib-readme-job:
strategy:
matrix:
readme_path: [README.md, README-ZH.md]
runs-on: ubuntu-latest
name: A job to automate contrib in readme
steps:
- name: Contribute List - ${{ matrix.readme_path }}
uses: akhilmhdh/[email protected]
with:
image_size: 100
readme_path: ${{ matrix.readme_path }}
use_username: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82 changes: 82 additions & 0 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: 'test coverage'
run-name: 'Test Coverage'

on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'example/**'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'example/**'

jobs:

code-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Prepare dependencies
run: |
flutter --version
flutter pub get
- name: Check Dart code formatting
run: |
dart format . -o none --set-exit-if-changed
- name: Analyze Dart code
run: |
flutter analyze .
- name: Generate dartdoc
run: |
dart pub global activate dartdoc
dart pub global run dartdoc .
test:
needs: [code-analysis]
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['3.7.0', '']
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: ${{ matrix.flutter-version }}
- name: Prepare dependencies
run: |
flutter --version
flutter pub get
- name: Test
run: flutter test

upload-test-coverage:
needs: [test]
if: |
github.event_name == 'push'
&& github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Prepare dependencies
run: |
flutter --version
flutter pub get
- name: Test Coverage
run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 2def6d7

Please sign in to comment.