Merge branch 'master' of https://github.com/sapatevaibhav/chess into … #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Flutter CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set Up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Run Code Analysis | |
run: flutter analyze | |
- name: Build APK | |
run: flutter build apk | |
- name: Build App Bundle | |
run: flutter build appbundle |