mirror of
https://github.com/mii443/tokenizers.git
synced 2025-08-31 04:29:21 +00:00
Update Github actions for integration tests
This commit is contained in:
17
.github/workflows/rust.yml
vendored
17
.github/workflows/rust.yml
vendored
@ -56,7 +56,22 @@ jobs:
|
|||||||
args: --manifest-path ./tokenizers/Cargo.toml --all-targets --all-features -- -D warnings
|
args: --manifest-path ./tokenizers/Cargo.toml --all-targets --all-features -- -D warnings
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
|
if: matrix.os != 'windows-latest'
|
||||||
|
shell: bash
|
||||||
|
working-directory: ./tokenizers
|
||||||
|
run: make test
|
||||||
|
|
||||||
|
# Skip integration tests for now on Windows
|
||||||
|
- name: Run lib Tests on Windows
|
||||||
|
if: matrix.os == 'windows-latest'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --verbose --manifest-path ./tokenizers/Cargo.toml
|
args: --verbose --manifest-path ./tokenizers/Cargo.toml --lib
|
||||||
|
|
||||||
|
- name: Run doc Tests on Windows
|
||||||
|
if: matrix.os == 'windows-latest'
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: test
|
||||||
|
args: --verbose --manifest-path ./tokenizers/Cargo.toml --doc
|
||||||
|
Reference in New Issue
Block a user