Skip to content

PEP517 cleanup

PEP517 cleanup #32

Workflow file for this run

name: Wheels
on:
workflow_dispatch:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
PYTHONIOENCODING: utf-8
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Set git crlf/eol
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get -qq update
sudo apt-get install -y libgpgme-dev
- name: Macos dependencies
if: runner.os == 'MacOS'
run: |
brew install gpgme
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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.9 && runner.os == 'Linux'
uses: actions/upload-artifact@v4
with:
path: |
./dist/*.whl
./dist/*.tar.gz