Reset map viewport when returning to Choose project and opening a pro… #286
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Cache build | |
uses: actions/cache@v4 | |
with: | |
path: backend/target | |
key: cargo-test-${{ hashFiles('backend/Cargo.lock') }} | |
- name: Download test inputs | |
run: bin/download-local-test-data.sh | |
- name: Run tests | |
run: | | |
cargo test --release |