mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 21:33:44 +02:00
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
702 B
YAML
32 lines
702 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@v3
|
|
- uses: actions/cache@v4
|
|
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: Dart format
|
|
run: dart format -o none --set-exit-if-changed .
|
|
- name: Flutter analyze
|
|
run: flutter analyze |