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

24
vendor/strsim/.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
rust: ["beta", "stable", "1.31.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Build the code
run: cargo build --verbose
- name: Test the code
run: cargo test --verbose