Skip to content

Bump actions/checkout from 1 to 4 #14

Bump actions/checkout from 1 to 4

Bump actions/checkout from 1 to 4 #14

name: Flutter Action
#
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
#
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.20.x' # you can use 1.20
channel: 'stable' # optional, default to: 'stable'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: flutter test
- run: flutter build apk
#
#
#