Skip to content

github workflow

github workflow #9

Workflow file for this run

name: Build & Test
on:
push:
branches: [ "github" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "github" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
PYTHON_VERSION: "3.10"
COUNTERPARTY_RS_DIR: "./counterparty-rs"
jobs:
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
default: true
- name: Build wheels - x86_64
uses: messense/maturin-action@v1
with:
target: x86_64
args: --release --out dist --sdist -m ${{ env.COUNTERPARTY_RS_DIR }}/Cargo.toml
maturin-version: "v0.14.3"
- name: Install built wheel - x86_64
run: |
pip install dist/counterparty_rs-*.whl --force-reinstall
pip install pytest
cd counterparty-rs && pytest -v
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist