Skip to content

Complain if you give a scramble algorithm but also try to use shorten #530

Complain if you give a scramble algorithm but also try to use shorten

Complain if you give a scramble algorithm but also try to use shorten #530

Workflow file for this run

name: make build
on: [push, pull_request]
jobs:
cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make
- run: ./build/bin/twsearch -g samples/main/2x2x2.tws
- run: make test-cpp-cli
cpp-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: make
- uses: actions/upload-artifact@v3
with:
name: windows-build
path: build/bin/
wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: wasmerio/setup-wasmer@v2
- run: make emsdk
- run: make build/wasm-test/twsearch-test.wasm
- run: make build/wasm-single-file/twsearch.mjs
- run: make test-wasm
- run: make test-build-js
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- run: make build-rust
- run: make lint-rust
- run: make test-twsearch-cpp-wrapper-cli
- run: make test-rs
- run: make benchmark-rs