Skip to content

Bump to 0.1.6

Bump to 0.1.6 #8

Workflow file for this run

name: Clippy, Format & Test
on: [pull_request, push, workflow_dispatch]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: |
cargo test --no-default-features
cargo test --all-features
sudo apt-get update && sudo apt-get install -y libxml2-utils
cargo test -- --ignored
cargo test --features visual-debug -- --ignored
examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo run --example src_to_svg
- run: cargo run --example various