Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Update float-cmp requirement from >=0.6, < 0.10 to >=0.6, < 0.11 #266

Update float-cmp requirement from >=0.6, < 0.10 to >=0.6, < 0.11

Update float-cmp requirement from >=0.6, < 0.10 to >=0.6, < 0.11 #266

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test
run: cargo test --verbose --all-features
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Test
run: cargo test --verbose --all-features
build-macosx:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Test
run: cargo test --verbose --all-features
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
cargo install --force cargo-sync-readme
rustup component add rustfmt
- name: cargo sync-readme
run: |
cargo sync-readme -c
- name: rustfmt
run: cargo fmt -- --check