diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..810dfe0 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,47 @@ +name: Analyze + +on: push + +jobs: + analyze: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + name: Checkout + + - uses: subosito/flutter-action@v2.12.0 + name: Set up Flutter SDK + with: + channel: 'stable' + cache: true + + - name: Install dependencies + run: | + cd app + flutter clean + flutter pub get + + cd ../data + flutter clean + flutter pub get + + cd ../style + flutter clean + flutter pub get + + cd .. + + - name: Lint test + run: | + cd app + dart analyze --fatal-infos + + cd ../data + dart analyze --fatal-infos + + cd ../style + dart analyze --fatal-infos + + cd .. + diff --git a/.idea/libraries/Dart_Packages.xml b/.idea/libraries/Dart_Packages.xml new file mode 100644 index 0000000..26deff4 --- /dev/null +++ b/.idea/libraries/Dart_Packages.xml @@ -0,0 +1,808 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Flutter_Plugins.xml b/.idea/libraries/Flutter_Plugins.xml new file mode 100644 index 0000000..c4e0028 --- /dev/null +++ b/.idea/libraries/Flutter_Plugins.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/app/VERSION b/app/VERSION new file mode 100644 index 0000000..9f8e9b6 --- /dev/null +++ b/app/VERSION @@ -0,0 +1 @@ +1.0 \ No newline at end of file