Skip to content

Add support for multi-part questions #278

Add support for multi-part questions

Add support for multi-part questions #278

Workflow file for this run

name: Tests
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
pull_request:
branches:
- "**"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/workflows/setup
- name: Install Aquascope
# tag should match mdbook-aquascope version
run: |
git clone -b v0.3.0 https://github.com/cognitive-engineering-lab/aquascope
cd aquascope
cargo make install-mdbook
- name: Test Rust package
run: cargo test --all-features --locked
- name: Lint Rust package
run: cargo clippy --all-features --locked -- -D warnings
- name: Test JS package
run: depot test
working-directory: js