Skip to content

Commit

Permalink
Add Flutter CI GitHub Actions workflow (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Nguyen authored Apr 20, 2024
1 parent 0d2020c commit 1f5e208
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/flutter-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Flutter CI

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Linting
run: flutter analyze
- name: Testing
run: flutter test
- name: Building
run: flutter build appbundle

0 comments on commit 1f5e208

Please sign in to comment.