Upgrade package_info_plus to ^1.2.5 #313
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
name: Test | |
on: [push, pull_request] | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.16.7" | |
channel: "stable" | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter pub outdated | |
- run: flutter pub upgrade | |
- run: flutter clean | |
- run: flutter doctor | |
- name: Activate metrics | |
run: | | |
flutter pub global activate dart_code_metrics | |
export PATH="$PATH":"$HOME/.pub-cache/bin" | |
- name: code-quality | |
run: metrics lib -r codeclimate > gl-code-quality-report.json | |
- name: View result | |
run: cat gl-code-quality-report.json |