2022-08-04 17:49:18 +00:00
|
|
|
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
|
2022-11-23 11:59:57 +00:00
|
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
|
|
with:
|
|
|
|
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
|
|
|
|
version: 'latest'
|
2022-11-21 04:57:56 +00:00
|
|
|
- uses: denoland/setup-deno@v1
|
|
|
|
with:
|
|
|
|
deno-version: v1.x
|
2022-08-04 17:57:16 +00:00
|
|
|
- name: Install nextest
|
|
|
|
uses: taiki-e/install-action@v1
|
|
|
|
with:
|
|
|
|
tool: nextest
|
|
|
|
|
2022-11-06 15:25:24 +00:00
|
|
|
- run: rustup toolchain install stable --profile minimal
|
2022-12-09 03:40:15 +00:00
|
|
|
- run: rustup target add wasm32-unknown-unknown
|
2022-12-09 04:11:01 +00:00
|
|
|
- uses: jetli/wasm-bindgen-action@v0.2.0
|
|
|
|
with:
|
|
|
|
version: 'latest'
|
2022-11-06 15:25:24 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-08-04 17:49:18 +00:00
|
|
|
- name: Build
|
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
2022-11-24 04:15:25 +00:00
|
|
|
run: deno task test & deno task test-wasm
|