8000 wip: Update on 20240616-3 · lijy91/biyi@e5ea3eb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

wip: Update on 20240616-3 #63

wip: Update on 20240616-3

wip: Update on 20240616-3 #63

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.0"
channel: "stable"
- uses: bluefireteam/melos-action@v2
- run: melos run analyze
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.0"
channel: "stable"
cache: true
- uses: bluefireteam/melos-action@v2
- run: melos run format-check
dependency_validator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.0"
channel: "stable"
cache: true
- uses: bluefireteam/melos-action@v2
- run: melos run dependency_validator
0