Document geofence guard and AreaManager role for add_area #1203
This file contains hidden or 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: | |
| 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' |