Update polars requirement from 0.34.2 to 0.35.0 #207
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: Benchmarks | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ephem_type2_chebyshev: | |
name: SPICE versus ANISE Benchmark | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install CSPICE | |
run: sh dev-env-setup.sh && cd .. # Return to root | |
- name: Bench JPL Ephemerides | |
run: cargo bench --bench "*_jpl_ephemerides" | |
- name: Bench Spacecraft (Hermite type 13) | |
run: cargo bench --bench "*_spacecraft_ephemeris" | |
- name: Bench Binary planetary constants | |
run: cargo bench --bench "crit_bpc_rotation" | |
- name: Save benchmark artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jpl-development-ephemerides-benchmark | |
path: target/criterion/**/report/* |