Skip to content

Fix build by removing #[wasm_bindgen] #84

Fix build by removing #[wasm_bindgen]

Fix build by removing #[wasm_bindgen] #84

Workflow file for this run

name: Rust - Build and Test
on:
pull_request:
paths:
- 'Cargo.*'
- '*.rs'
- 'src/**'
- '.github/workflows/rust.yml'
push:
branches: [ "main" ]
paths:
- 'Cargo.*'
- '*.rs'
- 'src/**'
- '.github/workflows/rust.yml'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup default stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose