Fix gradle build, increase heap size #168
Workflow file for this run
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
name: Flutter Test CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.24.x" | |
- name: Disable Google Analytics | |
run: flutter config --no-analytics | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Analyze code | |
run: flutter analyze | |
- name: Install Linux dependencies | |
run: sudo apt update && sudo apt install libsodium23 -y | |
- name: Run tests | |
run: flutter test test |