Skip to content

Bump rxdart from 0.27.7 to 0.28.0 #28

Bump rxdart from 0.27.7 to 0.28.0

Bump rxdart from 0.27.7 to 0.28.0 #28

Workflow file for this run

name: Pull Request
on: [ pull_request ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-flutter
- run: flutter analyze
- run: dart format -o none --set-exit-if-changed .
test:
needs: analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-flutter
- run: dart run build_runner build --delete-conflicting-outputs
- run: flutter test --coverage
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/lcov.info