Skip to content

Remove support for changing distance unit #46

Remove support for changing distance unit

Remove support for changing distance unit #46

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --all
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings