Skip to content

feat: create and implement network filter functionality #38

feat: create and implement network filter functionality

feat: create and implement network filter functionality #38

Workflow file for this run

name: 🛠️ Pull Request CI
on: [push, workflow_dispatch, pull_request]
jobs:
drive:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.22.0
- run: flutter --version
- name: Dart Apply Fixes (if this fails, run `dart fix --apply` locally)
run: dart fix --apply; git diff --exit-code
- name: Dart Formatter (if this fails, run `dart format .` locally)
run: dart format .; git diff --exit-code
- name: Restore packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Test
run: flutter test