Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: noop
run: echo 'noop'

semantic_pull_request:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1

pana:
runs-on: ubuntu-latest
steps:
- name: noop
run: echo 'noop'
38 changes: 38 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@


cleanup:
fvm flutter clean
fvm flutter pub get

flutter:
fvm flutter clean
fvm flutter pub get

upgrade:
fvm flutter packages upgrade

ios: flutter
cd ios ; pod install

install:
@echo "╠ -------------------------- START ---------------------------"
@echo "╠ -------------- Install project and workflow ----------------"
fvm flutter pub get
fvm flutter pub global activate devtools
@echo "╠ -------------------------- FINISH ---------------------------"

clean:
@echo "╠ -------------------------- START ---------------------------"
@echo "╠ ---------------------- Clean project -----------------------"
fvm flutter packages pub get run build_runner clean
fvm flutter pub cache clean
rm -r pubspec.lock
fvm flutter clean
@echo "╠ -------------------------- FINISH ---------------------------"

analyze:
@echo "╠ -------------------------- START -----------------------------"
@echo "╠ --------------------- Analyze project ------------------------"
fvm flutter analyze
fvm flutter pub outdated
@echo "╠ -------------------------- FINISH ----------------------------"