Multi argument functions #108
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: 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 | |
### 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 |