feat: calculations #2287
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: Rust-CI | |
on: | |
push: | |
branches: | |
- "main" | |
- "develop" | |
- "release/*" | |
paths: | |
- "frontend/rust-lib/**" | |
pull_request: | |
branches: | |
- "main" | |
- "develop" | |
- "release/*" | |
paths: | |
- "frontend/rust-lib/**" | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_TOOLCHAIN: "1.75" | |
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 prerequisites | |
working-directory: frontend | |
run: | | |
cargo install --force cargo-make | |
cargo install --force duckscript_cli | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: 'ubuntu-latest' | |
workspaces: | | |
frontend/rust-lib | |
- name: Checkout appflowy cloud code | |
uses: actions/checkout@v3 | |
with: | |
repository: AppFlowy-IO/AppFlowy-Cloud | |
path: AppFlowy-Cloud | |
depth: 1 | |
- name: Prepare appflowy cloud env | |
working-directory: AppFlowy-Cloud | |
run: | | |
# log level | |
cp deploy.env .env | |
sed -i 's|RUST_LOG=.*|RUST_LOG=trace|' .env | |
sed -i 's|API_EXTERNAL_URL=.*|API_EXTERNAL_URL=http://localhost|' .env | |
- name: Run Docker-Compose | |
working-directory: AppFlowy-Cloud | |
run: | | |
docker pull appflowyinc/appflowy_cloud:latest | |
docker compose up -d | |
- name: Run rust-lib tests | |
working-directory: frontend/rust-lib | |
env: | |
RUST_LOG: info | |
RUST_BACKTRACE: 1 | |
af_cloud_test_base_url: http://localhost | |
af_cloud_test_ws_url: ws://localhost/ws | |
af_cloud_test_gotrue_url: http://localhost/gotrue | |
run: cargo test --no-default-features --features="rev-sqlite,dart" -- --nocapture | |
- name: rustfmt rust-lib | |
run: cargo fmt --all -- --check | |
working-directory: frontend/rust-lib/ | |
- name: clippy rust-lib | |
run: cargo clippy --all-targets -- -D warnings | |
working-directory: frontend/rust-lib |