bugfix: Fix zoom on mobile (#273) #15
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: Build, check and test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build | |
| run: cargo build --verbose --features _tests,geojson,fontconfig-dlopen | |
| - name: Tests | |
| run: cargo test --features _tests,geojson,fontconfig-dlopen --verbose | |
| - name: Doc tests | |
| run: cargo test --doc --features geojson,fontconfig-dlopen --verbose | |
| fmt: | |
| name: Rustfmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: rustup toolchain install nightly | |
| - run: rustup component add --toolchain nightly rustfmt | |
| - name: Rustfmt check | |
| run: cargo +nightly fmt --all -- --check | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: rustup component add clippy | |
| - name: Clippy check | |
| run: cargo clippy --all-targets --features geojson --features fontconfig-dlopen -- -D warnings | |
| check-wasm: | |
| name: Build wasm32 target | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: rustup target add wasm32-unknown-unknown | |
| - run: RUSTFLAGS='--cfg getrandom_backend="wasm_js"' cargo check --target wasm32-unknown-unknown --all-features | |
| spelling: | |
| name: Spell Check with Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions Repository | |
| uses: actions/checkout@v4 | |
| - name: Spell Check Repo | |
| uses: crate-ci/typos@v1.29.4 |