Skip to content

Migrate setuptools to full pyproject.toml only (#61) #147

Migrate setuptools to full pyproject.toml only (#61)

Migrate setuptools to full pyproject.toml only (#61) #147

Workflow file for this run

name: Package
on:
push:
branches: [main]
pull_request:
branches: [main]
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Build package via tox
run: tox -e build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-files
path: dist/*