Skip to content

Lower the minimum required Rust version to 1.60 by exporting the LambertW trait in a less ambiguous way #36

Lower the minimum required Rust version to 1.60 by exporting the LambertW trait in a less ambiguous way

Lower the minimum required Rust version to 1.60 by exporting the LambertW trait in a less ambiguous way #36

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
agnostic:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
- run: make check
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --profile=minimal
- run: make test
- run: make bench
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --profile=minimal
- run: make test
- run: make bench