-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |