Skip to content

chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 #60

chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0

chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 #60

Workflow file for this run

name: r13n_e2e
on:
pull_request:
paths:
- ".github/workflows/e2e.yaml"
- "lib/**"
- "test/**"
- "pubspec.yaml"
push:
branches:
- main
paths:
- ".github/workflows/e2e.yaml"
- "lib/**"
- "test/**"
- "pubspec.yaml"
jobs:
e2e:
runs-on: ubuntu-latest
defaults:
run:
working-directory: e2e
strategy:
matrix:
flutter-version:
# The version of Flutter to use should use the minimum Dart SDK version supported by the package,
# refer to https://docs.flutter.dev/development/tools/sdk/releases.
- "3.24.0"
- ""
test:
- test/r13n_brick/r13n_brick_test.dart
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4.1.1
- name: 🐦 Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
- name: 📦 Install Dependencies
run: flutter pub get
- name: Run Tests
run: dart test ${{ matrix.test }}