Skip to content

Feature/add recaptcha ses #80

Feature/add recaptcha ses

Feature/add recaptcha ses #80

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- master
pull_request:
branches:
- master
- develop
- feature/*
jobs:
flutter_test:
name: Run Flutter Analyze and Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter pub get
- run: flutter analyze
- run: flutter test --coverage
- run: flutter test --machine > test-results.json
- uses: dorny/test-reporter@v1
with:
name: test-results
path: test-results.json
reporter: flutter-json
- uses: VeryGoodOpenSource/very_good_coverage@v2
with:
min_coverage: 70
- uses: codecov/codecov-action@v3
with:
# token: ${{ secrets.CODECOV_TOKEN }} not required for public repos
file: ./coverage/lcov.info
name: Codecov