fix(linux): use gtk_window_set_geometry_hints instead of gdk_window_set_geometry_hints to enforce size limits #169
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: lint | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.44.0" | |
| channel: "stable" | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: melos run analyze | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.44.0" | |
| channel: "stable" | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: melos run format-check |