Fix skipping first word in started TestEntry #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: patrol_log prepare | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'packages/patrol_log/**' | |
jobs: | |
prepare: | |
name: Flutter ${{ matrix.flutter-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
flutter-version: ['3.24.x'] | |
flutter-channel: ['stable'] | |
defaults: | |
run: | |
working-directory: packages/patrol_log | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ matrix.flutter-version }} | |
channel: ${{ matrix.flutter-channel }} | |
- name: flutter pub get | |
run: flutter pub get | |
- name: Run analyzer | |
if: success() || failure() | |
run: | | |
flutter analyze | |
dart run custom_lint | |
- name: dart format | |
if: success() || failure() | |
run: dart format --set-exit-if-changed . | |
- name: flutter pub publish --dry-run | |
if: success() || failure() | |
run: flutter pub publish --dry-run |