Skip to content

[fix/#191] 1.0.47 업데이트 #36

[fix/#191] 1.0.47 업데이트

[fix/#191] 1.0.47 업데이트 #36

Workflow file for this run

name: Measure Code Coverage
on:
pull_request:
branches:
- develop
jobs:
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2.8.0
with:
flutter-version: '3.10.2'
- name: Install packages
run: flutter pub get
- run: echo '${{ secrets.DOTENV }}' | base64 -d > .env
- run: echo "${{ secrets.FIREBASE_OPTIONS }}" | base64 -d > ./lib/firebase_options.dart
- name: run flutter test
run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true