update dependencies #470
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- uses: dtolnay/rust-toolchain@stable | |
- name: "Rust: Check and test" | |
run: | | |
cargo fmt --all -- --check | |
cargo check | |
cargo clippy -- -D warnings | |
cargo test | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
args: --release --out dist | |
- name: "Python: Install wheels and test import" | |
run: | | |
pip install dtpu --find-links dist --force-reinstall | |
python -c "import text_utils" | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- uses: dtolnay/rust-toolchain@stable | |
- name: "Rust: Check and test" | |
run: | | |
cargo fmt --all -- --check | |
cargo check | |
cargo clippy -- -D warnings | |
cargo test | |
- name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
manylinux: auto | |
args: --release --out dist | |
- name: "Python: Install wheels and test import" | |
run: | | |
pip install dist/*.whl --force-reinstall | |
python -c "import text_utils" |