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
24 changes: 24 additions & 0 deletions .github/workflows/code_analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Code

# Controls when the workflow will run
on:
# Triggers
pull_request:
branches: [ "master" ]
push:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
flutter_analyze:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter analyze
- run: flutter test
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish Release

on:
release:
types: [published]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2

- name: Install dependencies
run: flutter pub get

- name: Check Publish Warnings
run: dart pub publish --dry-run

- name: Publish Package
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.PUB_CREDENTIALS }}
flutter: true
skipTests: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ build/
ios/.generated/
ios/Flutter/Generated.xcconfig
ios/Runner/GeneratedPluginRegistrant.*
.fvm
.vscode
33 changes: 0 additions & 33 deletions .idea/NewGradientAppBar.iml

This file was deleted.

188 changes: 0 additions & 188 deletions .idea/libraries/Dart_Packages.xml

This file was deleted.

28 changes: 0 additions & 28 deletions .idea/libraries/Dart_SDK.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/libraries/Flutter_Plugins.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

Loading