feat: Fixes issue #378: Added support for daily & weekly reoccurrence event in month view #491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Analyze | |
on: | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Flutter | |
uses: britannio/[email protected] | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Formatting check | |
run: dart format . --set-exit-if-changed | |
- name: Analyse | |
run: flutter analyze |