don't use prepared geoms #120
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 build and test | |
on: push | |
jobs: | |
stable: | |
runs-on: ${{matrix.platform}} | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
profile: minimal | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
- name: Install deps | |
run: | | |
pip install numpy | |
- run: cargo build --verbose | |
- run: cargo test --verbose | |
nightly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
profile: minimal | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
- name: Install deps | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install build-essential libssl-dev | |
pip install numpy | |
- run: cargo build --features nightly --verbose | |
- run: cargo test --features nightly --verbose |