-
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.
Merge pull request #12 from Position-Platform/2-feature-add-views-ini…
…t-app Add Workflow
- Loading branch information
Showing
3 changed files
with
54 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,10 @@ | ||
--- | ||
name: "⚡Test" | ||
about: Test a feature | ||
title: 'Test :' | ||
labels: test | ||
assignees: BorisGautier | ||
|
||
--- | ||
|
||
**Test Description** |
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,43 @@ | ||
name: "Position" | ||
|
||
# This workflow is triggered on pushes to the repository. | ||
|
||
on: | ||
push: | ||
paths: | ||
- .github/workflows/position.yml | ||
branches: ["main", "dev"] | ||
|
||
# on: push # Default will running for every branch. | ||
|
||
jobs: | ||
build: | ||
# This job will run on ubuntu virtual machine | ||
runs-on: macos-latest | ||
steps: | ||
# Setup Java environment in order to build the Android app. | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v2 | ||
with: | ||
java-version: "8.x" | ||
|
||
# Setup the flutter environment. | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: "stable" # 'dev', 'alpha', default to: 'stable' | ||
flutter-version: "3.3.0" # 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 . | ||
|
||
# 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 appbundle |
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 @@ | ||
|