Change Dependabot update interval to monthly #48
This file contains hidden or 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
| name: Dart Analyzer | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| name: Pangolin Desktop Code Analysis | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v2 | |
| - run: flutter pub get | |
| - name: Analyze Dart | |
| uses: zgosalvez/github-actions-analyze-dart@v2 | |
| - name: Set up build environment | |
| run: sudo apt-get install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev libgtk-3-0 libblkid1 liblzma5 -y | |
| - name: Build Pangolin Desktop | |
| run: flutter build linux |