created vendored crates

This commit is contained in:
Arseniy Romenskiy 2026-02-19 20:24:30 +03:00
parent 8bede44aa8
commit 8ed487c4cd
15672 changed files with 6291182 additions and 0 deletions

View file

@ -0,0 +1,24 @@
on: [push, pull_request]
name: Continuous integration
jobs:
check-test:
name: Check and test crate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all-targets
- run: cargo test
clippy-fmt:
name: Run Clippy and format code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo clippy --all-targets -- -D warnings
- run: cargo fmt --all --check