Skip to content

Rename job in GitHub Actions workflow to clarify purpose of enforcing… #3

Rename job in GitHub Actions workflow to clarify purpose of enforcing…

Rename job in GitHub Actions workflow to clarify purpose of enforcing… #3

Workflow file for this run

name: Quality
on:
pull_request:
branches: ["develop"]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Check formatting
run: dart format --set-exit-if-changed .
- name: Static analysis
run: flutter analyze
- name: pub.dev dry-run
run: flutter pub publish --dry-run