mirror of
https://github.com/Iconica-Development/flutter_image_picker.git
synced 2025-05-18 19:53:45 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
709 B
YAML
33 lines
709 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- feature/*
|
|
- bugfix/*
|
|
- hotfix/*
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.gradle/wrapper
|
|
/opt/hostedtoolcache/flutter
|
|
key: ${{ runner.OS }}-flutter-install-cache
|
|
- uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
- name: Flutter pub get
|
|
run: flutter pub get
|
|
- name: Flutter format
|
|
run: flutter format -o none --set-exit-if-changed .
|
|
- name: Flutter analyze
|
|
run: flutter analyze
|