Skip to content

Commit

Permalink
Push to master checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael Wills committed Dec 18, 2024
1 parent 523904e commit adf4aa1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pushMaster.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Push To Master

on:
push:
branches:
- master

jobs:
build:
name: Build Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Install project dependencies
run: flutter pub get
- name: Dart Format Check
run: dart format lib/ test/ --set-exit-if-changed
- name: Import Sorter Check
run: flutter pub run import_sorter:main --no-comments --exit-if-changed
- name: Dart Analyze Check
run: flutter analyze
- name: Dart Test Check
run: flutter test

0 comments on commit adf4aa1

Please sign in to comment.