Skip to content

Linting

Linting #50

Workflow file for this run

name: "Build package"
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Checkout code
uses: actions/checkout@v4.1.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install build requirements
run: |
python -m pip install -U pip
python -m pip install build
- name: Build a binary wheel and a source tarball
run: python -m build .