Skip to content

Add BYODS.md, update README with BYODS info #144

Add BYODS.md, update README with BYODS info

Add BYODS.md, update README with BYODS info #144

Workflow file for this run

name: Rust
on:
push:
branches: [ master, ci, par, byods ]
pull_request:
branches: [ master, byods ]
paths-ignore:
- '**/*.MD'
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cargo --version
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: 1.66
- run: cargo --version
- name: Run ascent_tests tests
working-directory: ./ascent_tests
run: cargo test
- name: Run ascent_tests tests with `--features par`
working-directory: ./ascent_tests
run: cargo test --features par
- name: Run ./ascent tests
working-directory: ./ascent
run: cargo test
- name: Run ascent_base tests
working-directory: ./ascent_base
run: cargo test
- name: Run Benchmarks
working-directory: ./ascent_tests
run: cargo bench bench_tc -- --nocapture
- uses: jetli/wasm-pack-action@v0.3.0
with:
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
version: 'latest'
- name: Run wasm tests
working-directory: ./wasm-tests
run: wasm-pack test --headless --firefox
# macro tests should be last, because they produce scratchpad.rs, which my not compile
- name: Run macro tests
working-directory: ./ascent_macro
run: cargo test test