mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
231fd38298
* chore: upgrade appflowy_editor_plugins and flowy_infra * feat(appflowy_flutter): upgrade dependence and delete unused import files * fix(appflowy_flutter): fix SvgPicture upgrade issue update color to colorFilter: apply mask color when the color is not null * feat(appflowy_editor): updateflutter_svg version * chore: flutter analyze * chore: update to 3.7.5 in github action * chore: update to 3.7.5 in github action(integration test) * chore: update appflowy_editor to 0.1.2 * chore: delete appflowy_editor_test.yml under appflowy * chore: update the flutter version in github action * docs: update flutter badge image * chore: update flutter version in scripts * chore: update appflowy editor to the latest release * chore: fix flutter analyze * chore: update integration_test.yml --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io> Co-authored-by: Nathan.fooo <86001920+appflowy@users.noreply.github.com>
87 lines
2.1 KiB
YAML
87 lines
2.1 KiB
YAML
name: Rust-CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "release/*"
|
|
paths:
|
|
- "frontend/rust-lib/**"
|
|
- "shared-lib/**"
|
|
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
- "release/*"
|
|
paths:
|
|
- "frontend/rust-lib/**"
|
|
- "shared-lib/**"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUST_TOOLCHAIN: "1.65"
|
|
FLUTTER_VERSION: "3.7.5"
|
|
|
|
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
|
|
with:
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
override: true
|
|
components: rustfmt, clippy
|
|
profile: minimal
|
|
|
|
- name: Install flutter
|
|
id: flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: "stable"
|
|
flutter-version: ${{ env.FLUTTER_VERSION }}
|
|
cache: true
|
|
|
|
- name: Install prerequisites
|
|
working-directory: frontend
|
|
run: |
|
|
cargo install --force cargo-make
|
|
cargo install --force duckscript_cli
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
prefix-key: ${{ matrix.job.os }}
|
|
|
|
- name: Build FlowySDK
|
|
working-directory: frontend
|
|
run: |
|
|
cargo make --profile development-linux-x86_64 appflowy-core-dev
|
|
|
|
- name: rustfmt rust-lib
|
|
run: cargo fmt --all -- --check
|
|
working-directory: frontend/rust-lib/
|
|
|
|
- name: clippy rust-lib
|
|
run: cargo clippy --features="rev-sqlite"
|
|
working-directory: frontend/rust-lib
|
|
|
|
- name: Run rust-lib tests
|
|
working-directory: frontend/rust-lib
|
|
run: RUST_LOG=info cargo test --no-default-features --features="sync,rev-sqlite"
|
|
|
|
- name: rustfmt shared-lib
|
|
run: cargo fmt --all -- --check
|
|
working-directory: shared-lib
|
|
|
|
- name: clippy shared-lib
|
|
run: cargo clippy -- -D warnings
|
|
working-directory: shared-lib
|
|
|
|
- name: Run shared-lib tests
|
|
working-directory: shared-lib
|
|
run: RUST_LOG=info cargo test --no-default-features
|