-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
152abbc
commit 49f28c1
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Flutter | ||
|
||
on: | ||
push: | ||
branches: [ "main", "develop"] | ||
pull_request: | ||
branches: [ "main", "develop"] | ||
|
||
jobs: | ||
flutter_job: | ||
|
||
# The machine, we can also use windows-latest or ubuntu-latest | ||
# We are choosing macos-latest because we will be also building for iOS | ||
runs-on: macos-latest | ||
|
||
steps: | ||
|
||
# Clones the project on the machine | ||
- uses: actions/checkout@v4 | ||
|
||
# Installs flutter and related dependency on this machine | ||
- name: Setup Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
# flutter-version: '3.16.8' | ||
# ^ If you want to use a specific version of flutter | ||
|
||
# Fetches proj dependencies from pub | ||
- name: Install dependencies | ||
run: flutter pub get | ||
# ^ If you want to use a specific version of flutter |