Skip to content

Commit

Permalink
chore: update lint workflow Flutter version
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffsieu committed Jul 3, 2024
1 parent f435a7e commit 4099139
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,22 @@ name: lint

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install flutter
uses: subosito/flutter-action@v1.5.3
uses: subosito/flutter-action@v2
with:
# The Flutter version to make available on the path
flutter-version: '3.0.5'
flutter-version: "3.22.2"

- name: Install flutter dependencies
run: flutter pub get
Expand All @@ -34,16 +33,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install flutter
uses: subosito/flutter-action@v1.5.3
uses: subosito/flutter-action@v2
with:
# The Flutter version to make available on the path
flutter-version: '3.0.5'
flutter-version: "3.22.2"

- name: Install flutter dependencies
run: flutter pub get

- name: Analyze project source
run: flutter analyze

0 comments on commit 4099139

Please sign in to comment.