WIP lsystem tools #202
Workflow file for this run
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] | |
jobs: | |
python-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --requirement requirements.txt | |
- name: Run tests | |
run: pytest | |
rust-test: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: -D warnings | |
CARGO_TERM_COLOR: always | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Install C++ build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends cmake build-essential ninja-build | |
- name: Set up Rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
# modify to trigger clearing the cache | |
prefix-key: v1-rust | |
- name: Run rustfmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --check | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-targets --all-features -vv | |
- name: Lint | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --release --all-targets --no-default-features | |
- name: Rust Tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --all-targets --all-features | |
- name: C++ Tests | |
run: | | |
./target/release/cxx-tests --gtest_color=yes |