Skip to content

Added Float data type with suffix 'f'. #30

Added Float data type with suffix 'f'.

Added Float data type with suffix 'f'. #30

Workflow file for this run

name: Build
on: push
jobs:
build_wheel:
name: Build wheel
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: ci-wheels-${{ strategy.job-index }}-python${{ matrix.python-version }}
path: ./dist/*.whl