fix: rust and flutter ci (#1643)

Co-authored-by: vedon <vedon.fu@gmail.com>
This commit is contained in:
Nathan.fooo 2023-01-03 22:55:30 +08:00 committed by GitHub
parent c932f63e57
commit 0e88d643cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -102,13 +102,13 @@ jobs:
run: flutter analyze
#Just run one platform
- if: $RUNNER_OS" == "Linux"
- if: "$RUNNER_OS" == "Linux"
name: Build Flutter unit test lib
working-directory: frontend
run: |
cargo make build-test-lib
- if: $RUNNER_OS" == "Linux"
- if: "$RUNNER_OS" == "Linux"
name: Run Flutter unit tests
working-directory: frontend/app_flowy
run: |

View File

@ -25,6 +25,9 @@ jobs:
test-on-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Install Rust toolchain
id: rust_toolchain
uses: actions-rs/toolchain@v1