Merge pull request #86 from nbuffon/update_geo_crate #254
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 | |
on: [ push, pull_request ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run rustfmt | |
run: | | |
cd rust | |
cargo fmt -- --check | |
- name: Clippy | |
run: | | |
cd rust | |
cargo clippy -- -D clippy::all | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
cd rust | |
cargo build --verbose | |
- name: Release build | |
run: | | |
cd rust | |
cargo build --release --verbose | |
- name: Run tests | |
run: | | |
cd rust | |
cargo test --verbose |