AppFlowy/.github/workflows/rust_test.yml

40 lines
961 B
YAML
Raw Normal View History

2022-02-10 01:15:16 +00:00
name: Unit test(Rust)
on:
push:
branches: [ main ]
2022-02-09 13:13:51 +00:00
# paths:
# - 'frontend/rust-lib'
# - 'shared-lib'
pull_request:
branches: [ main ]
2022-02-09 13:13:51 +00:00
# paths:
# - 'frontend/rust-lib'
# - 'shared-lib'
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
run: |
curl \
--proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
rustup toolchain install stable
rustup default stable
2022-02-09 13:13:51 +00:00
- name: Install cargo-make
run: cargo install --force cargo-make
working-directory: frontend
- name: RustLib tests
run: cargo test --no-default-features
2022-02-09 12:56:29 +00:00
working-directory: frontend/rust-lib
2022-02-09 13:13:51 +00:00
- name: Sharedlib tests
run: cargo test --no-default-features
2022-02-09 12:56:29 +00:00
working-directory: shared-lib