mirror of
https://github.com/loro-dev/loro.git
synced 2024-12-01 04:28:18 +00:00
37 lines
814 B
YAML
37 lines
814 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
with:
|
|
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
|
|
version: 'latest'
|
|
- uses: denoland/setup-deno@v1
|
|
with:
|
|
deno-version: v1.x
|
|
- name: Install nextest
|
|
uses: taiki-e/install-action@v1
|
|
with:
|
|
tool: nextest
|
|
|
|
- run: rustup toolchain install stable --profile minimal
|
|
- run: rustup target add wasm32-unknown-unknown
|
|
- uses: Swatinem/rust-cache@v2
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: deno task test & deno task test-wasm
|