Skip to content

Bump pigeon from 19.0.2 to 22.3.0 #135

Bump pigeon from 19.0.2 to 22.3.0

Bump pigeon from 19.0.2 to 22.3.0 #135

Workflow file for this run

name: VarioqubConfigs
on:
workflow_dispatch:
push:
pull_request:
jobs:
checkout:
name: "Checkout"
runs-on: ubuntu-latest
container:
image: plugfox/flutter:stable
defaults:
run:
working-directory: ./
timeout-minutes: 10
steps:
- name: 🚂 Get latest code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: 🚃 Cache pub modules
uses: actions/cache@v2
env:
cache-name: cache-pub-package
with:
path: |
$PWD/.pub_cache/
key: ${{ runner.os }}-pub-${{ env.cache-name }}-${{ hashFiles('**/pubspec.yaml') }}
- name: 🗄️ Export pub cache directory
run: export PUB_CACHE=$PWD/.pub_cache/
- name: 👷 Install Dependencies
timeout-minutes: 1
run: |
flutter pub get -C .
- name: 🔎 Check format
timeout-minutes: 1
run: dart format --set-exit-if-changed -l 80 -o none lib/
- name: 📈 Check analyzer
timeout-minutes: 1
run: dart analyze --fatal-infos --fatal-warnings lib/