Skip to content

Import refactor, docs cleanup #36

Import refactor, docs cleanup

Import refactor, docs cleanup #36

Workflow file for this run

name: Wheels
on:
workflow_dispatch:
pull_request:
push:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
PYTHONIOENCODING: utf-8
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-12, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
steps:
- name: Set git crlf/eol
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install tox tox-gh-actions
- name: Build dist pkgs
run: |
tox -e build,check
- name: Upload artifacts
if: matrix.python-version == 3.8 && runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
path: |
./dist/*.whl
./dist/*.tar.gz