Skip to content

Revert "Merge pull request #19 from RReverser/upgrade-ordered-float" #28

Revert "Merge pull request #19 from RReverser/upgrade-ordered-float"

Revert "Merge pull request #19 from RReverser/upgrade-ordered-float" #28

Workflow file for this run

on: [push]
name: CI
jobs:
check_and_test:
name: cargo fmt/check/clippy/test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- run: rustup component add clippy
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test