Build classifier #3
Workflow file for this run
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: Classifier Release | |
run-name: Build classifier | |
on: [push] | |
jobs: | |
pypi-build: | |
name: Build distribution 📦 | |
runs-on: ubuntu-latest | |
# if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
architecture: 'x64' | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.77.1 | |
override: true | |
- name: Display Rust and Cargo version | |
run: | | |
rustc --version | |
cargo --version | |
- run: cd python-bindings | |
- name: Build release | |
run: | | |
cargo build --release | |
- name: Install pypa/build | |
run: >- | |
python3 -m | |
pip install | |
build maturin | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: maturin publish |