Skip to content

Commit

Permalink
Added Github Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
firoz3130 committed Jul 19, 2023
1 parent 49d10ab commit 9ad6d48
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/flutter_build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Flutter CI for TripItOn

# This workflow is triggered on pushes to the repository.

on:
push:
branches:
- master
pull_request:
branches:
- master

# on: push # Default will running for every branch.

jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: "12.x"

# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
channel: "beta" # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter

# Get flutter dependencies.
- run: flutter pub get

# Check for any formatting issues in the code.
- run: flutter format --set-exit-if-changed .

# Statically analyze the Dart code for any errors.
- run: flutter analyze .

# Run widget tests for our flutter project.
- run: flutter test

# Build apk.
- run: flutter build apk

# Upload generated apk to the artifacts.
- uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk

0 comments on commit 9ad6d48

Please sign in to comment.