Update ToWkt::write_wkt
to not buffer string
#280
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
- staging | |
- trying | |
pull_request: | |
name: Run tests | |
jobs: | |
wkt: | |
name: wkt | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
container: | |
image: georust/geo-ci | |
steps: | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
components: rustfmt, clippy, rust-src | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy --all-features --all-targets -- -Dwarnings | |
- run: cargo test --all-features | |
- run: cargo test --no-default-features |