Skip to content

Add optional store scanner beep sound (#10) #49

Add optional store scanner beep sound (#10)

Add optional store scanner beep sound (#10) #49

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