⬆️ Bump shared_preferences from 2.5.4 to 2.5.5 #35
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: Build | |
| on: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| branches: [ develop ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.runner }} | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| include: | |
| - runner: ubuntu-latest | |
| flutter_arch: x64 | |
| - runner: ubuntu-24.04-arm | |
| flutter_arch: arm64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Flutter | |
| if: matrix.flutter_arch != 'arm64' | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| cache: true | |
| - name: Setup Flutter (ARM64) | |
| if: matrix.flutter_arch == 'arm64' | |
| run: | | |
| git clone https://github.com/flutter/flutter.git --depth 1 -b stable /opt/flutter | |
| echo "/opt/flutter/bin" >> $GITHUB_PATH | |
| - name: Install Linux dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev | |
| - name: Get dependencies | |
| run: flutter pub get | |
| - name: Analyze | |
| run: flutter analyze | |
| - name: Build Linux | |
| run: flutter build linux --release |