Skip to content

Commit

Permalink
Merge pull request #12 from Position-Platform/2-feature-add-views-ini…
Browse files Browse the repository at this point in the history
…t-app

Add Workflow
  • Loading branch information
BorisGautier authored Sep 1, 2022
2 parents d2b397e + e14d549 commit 9630bc3
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/-test.md
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**
43 changes: 43 additions & 0 deletions .github/workflows/position.yml
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
1 change: 1 addition & 0 deletions lib/src/core/utils/sizes.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 9630bc3

Please sign in to comment.