Skip to content

Create deploy-web.yaml #69

Create deploy-web.yaml

Create deploy-web.yaml #69

Workflow file for this run

name: Flutter CI
on:
push:
branches:
- dev
- master
- action_test
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.3.2'
channel: 'stable'
- run: flutter packages get
- run: flutter test
- run: flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
# - run: curl