Release v0.3.8 (#50) #339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "v*" | |
env: | |
AQUASCOPE_VERSION: 0.3.1 | |
AQUASCOPE_TOOLCHAIN: nightly-2023-08-25 | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/workflows/setup | |
- name: Install Aquascope | |
run: | | |
rustup toolchain install ${AQUASCOPE_TOOLCHAIN} -c rust-src rustc-dev llvm-tools-preview miri | |
cargo +${AQUASCOPE_TOOLCHAIN} miri setup | |
echo "LD_LIBRARY_PATH=$($(rustup which --toolchain ${AQUASCOPE_TOOLCHAIN} rustc) --print target-libdir)" >> ${GITHUB_ENV} | |
curl -sSL https://github.com/cognitive-engineering-lab/aquascope/releases/download/v${AQUASCOPE_VERSION}/aquascope-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin | |
echo "$(pwd)/bin" >> ${GITHUB_PATH} | |
- 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 build --lint-fail && depot test | |
working-directory: js | |
- name: Install mdbook-quiz | |
run: cargo install --path crates/mdbook-quiz --debug --locked | |
- name: Build example mdbook | |
run: mdbook build | |
working-directory: example/mdbook | |
- name: Build example standalone | |
run: depot build --lint-fail | |
working-directory: example/standalone |