Skip to content

Docs

Docs #154

Workflow file for this run

name: Rust tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: IronCoreLabs/rust-toolchain@v1
with:
toolchain: nightly
### Pemdas
- name: Run tests (`pemdas` & `compile-time-optimizations`)
run: cargo test --no-default-features --features pemdas --features compile-time-optimizations
- name: Run tests (`pemdas` feature)
run: cargo test --no-default-features --features pemdas
### Pejmdas
- name: Run tests (`pejmdas` & `compile-time-optimizations` feature)
run: cargo test --no-default-features --features pejmdas --features compile-time-optimizations
- name: Run tests (`pejmdas` feature)
run: cargo test --no-default-features --features pejmdas