Skip to content

Document geofence guard and AreaManager role for add_area #1203

Document geofence guard and AreaManager role for add_area

Document geofence guard and AreaManager role for add_area #1203

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose
# cargo test regenerates bindings/ts/ (ts-rs), so a diff here means the
# committed bindings are stale — commit the regenerated files. The check
# covers all of bindings/ so future languages get it for free.
- name: Check bindings are up to date
run: git diff --exit-code bindings/
- name: Build
run: cargo build --release --verbose
- name: Create preview release
uses: softprops/action-gh-release@v2
with:
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: 'preview'
prerelease: true
name: 'preview'
files: 'target/release/btcmap-api'