Skip to content

Add methods to check for PDF/A compliance #151

Add methods to check for PDF/A compliance

Add methods to check for PDF/A compliance #151

Workflow file for this run

name: Continuous integration
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- run: cargo test --no-run
- run: cargo test --no-fail-fast
checks:
name: Check clippy, formatting, and documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets --all-features
- run: cargo fmt --check --all
- run: cargo doc --no-deps