feat: disable player auto resize / auto-move #4359
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| - run: flutter pub get | |
| - run: flutter analyze --fatal-infos | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| - run: flutter pub get | |
| - run: dart format --set-exit-if-changed . | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| - run: flutter test | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| - name: Clean Rust toolchain cache | |
| run: rm -rf ~/.rustup ~/.cargo | |
| - name: Install Rust toolchain (skip docs) | |
| run: | | |
| curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal | |
| export PATH="$HOME/.cargo/bin:$PATH" | |
| - run: sudo apt update | |
| - run: sudo apt install -y clang cmake curl libgtk-3-dev ninja-build pkg-config unzip libunwind-dev libmpv-dev libnotify-dev | |
| - run: flutter pub get | |
| - run: flutter build linux -v |