created vendored crates
This commit is contained in:
parent
8bede44aa8
commit
8ed487c4cd
15672 changed files with 6291182 additions and 0 deletions
32
vendor/unicode-segmentation/.github/workflows/rust.yml
vendored
Normal file
32
vendor/unicode-segmentation/.github/workflows/rust.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
fmt:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Rustfmt
|
||||
run: cargo fmt --check
|
||||
- name: Verify regenerated files
|
||||
run: ./scripts/unicode.py && diff tables.rs src/tables.rs
|
||||
Loading…
Add table
Add a link
Reference in a new issue