Skip to content

Add polygons support and prepare for version 0.2.0 #4

Add polygons support and prepare for version 0.2.0

Add polygons support and prepare for version 0.2.0 #4

Workflow file for this run

name: Rust CI
on: pull_request
jobs:
test-and-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: 'clippy, rustfmt'
- name: Run tests
# working-directory: .
run: cargo test --all-features
- name: Run clippy
# working-directory: .
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Check formatting
run: cargo fmt --all -- --check