Skip to content

Bump flutter_lints from 2.0.3 to 3.0.0 #162

Bump flutter_lints from 2.0.3 to 3.0.0

Bump flutter_lints from 2.0.3 to 3.0.0 #162

Workflow file for this run

name: test and coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
flutter_tests:
name: Drive tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Create .env file
uses: SpicyPizza/create-envfile@v2.0.2
with:
envkey_UNSPLASH_API_KEY: ""
directory: lib/core/
file_name: .env
- run: flutter analyze
- run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}