Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 1.54 KB

ci.md

File metadata and controls

32 lines (24 loc) · 1.54 KB

CI

The CI runs a couple of workflows:

Code

  • ci: A catch-all for small jobs. Currently only runs lints (rustfmt, clippy etc.)
  • unit: Runs unit tests (tests in src/) and doc tests
  • integration: Runs integration tests (tests in tests/ and sync tests)
  • fuzz: Runs fuzz tests
  • bench: Runs benchmarks

Docs

  • book: Builds, tests, and deploys the book.

Meta

  • deny: Runs cargo deny to check for license conflicts and security advisories in our dependencies
  • sanity: Runs a couple of sanity checks on the code every night, such as checking for unused dependencies
  • release: Runs the release workflow