Skip to content

Bump path_provider from 2.1.4 to 2.1.5 #16

Bump path_provider from 2.1.4 to 2.1.5

Bump path_provider from 2.1.4 to 2.1.5 #16

Workflow file for this run

name: Analyze Flutter Code
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
architecture: x64
# Output current flutter version
- run: flutter --version
# Get flutter dependencies.
- run: flutter pub get
# Statically analyze the Dart code for any errors.
- run: flutter analyze .