Proof-read the whole docs and fixed many small mistakes and improve it #401
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 Python bindings | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 6 * * 1' # Run every monday at 06:00 UTC | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: 1.6.0 | |
manylinux: 2014 | |
command: build | |
args: --release --sdist -i python3.12 | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: 1.6.0 | |
command: build | |
args: --release --sdist -i python3.12 | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install aarch64-apple-darwin toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: aarch64-apple-darwin | |
- uses: PyO3/maturin-action@v1 | |
with: | |
maturin-version: 1.6.0 | |
command: build | |
args: --release --sdist -i python3.12 |