ci: update checks, update example constraint with plugin #744
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: code analysis & formatting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, labeled, unlabeled, synchronize ] | |
jobs: | |
analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
- name: Version | |
run: flutter doctor -v | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Linter | |
run: flutter analyze | |
analysis_min_sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: subosito/flutter-action@v2.12.0 | |
with: | |
cache: true | |
flutter-version: '3.7.0' | |
channel: 'stable' | |
- name: Version | |
run: flutter doctor -v | |
- name: Install dependencies | |
run: flutter pub get --directory ./example | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Linter | |
run: flutter analyze | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
- name: Format | |
run: dart format --set-exit-if-changed . | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
- name: Version | |
run: flutter doctor -v | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Linter | |
run: flutter test |