Skip to content

Fix neighbors of boundary cells #15

Fix neighbors of boundary cells

Fix neighbors of boundary cells #15

Workflow file for this run

name: Run tests
on:
# Only run when merging to master, or open/synchronize/reopen a PR.
push:
branches:
- master
pull_request:
jobs:
geohash:
name: geohash
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
build: [stable, nightly]
include:
- build: stable
rust: stable
- build: nightly
rust: nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: clippy,rustfmt
- run: cargo fmt -- --check
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo test-all-features
- run: cargo clippy --all-features