feat(post): show context menu instead of setting reply target #1129
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: Test | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| env: | |
| CI_FLUTTER_VERSION: '3.35.3' | |
| jobs: | |
| flutter_test: | |
| name: Flutter test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: ${{env.CI_FLUTTER_VERSION}} | |
| cache: true | |
| - run: | | |
| sudo apt update -y | |
| sudo apt install -y ninja-build libgtk-3-dev sqlite3 libsqlite3-dev | |
| - name: Precompile | |
| run: | | |
| git submodule update --init --recursive --force | |
| flutter pub get | |
| dart ./Makefile.dart | |
| - name: Run flutter analyze | |
| run: | | |
| dart ./scripts/check_strict_analyzing.dart | |
| - name: Run flutter test | |
| run: | | |
| flutter test |