increment version number to 0.0.8 #50
Workflow file for this run
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: Code Quality | |
on: [ push ] | |
jobs: | |
check_lint_errors: | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Write .env file | |
run: | | |
cd components/interface_adapters | |
echo $ENV | base64 -d > .env | |
shell: bash | |
env: | |
ENV: ${{ secrets.ENV }} | |
- name: Setup flutter | |
uses: subosito/flutter-action@v1 | |
with: | |
channel: stable | |
- name: Write env.g.dart file | |
run: | | |
cd components/interface_adapters | |
dart run build_runner build --delete-conflicting-outputs | |
shell: bash | |
- name: Get packages | |
run: flutter pub get | |
- name: Check lint errors | |
run: flutter analyze . | |
- name: Very Good Coverage | |
uses: VeryGoodOpenSource/[email protected] | |
with: | |
min_coverage: 35 |