Skip to content

Updated version

Updated version #39

Workflow file for this run

name: Packaging
on:
push:
branches:
- main
pull_request:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade build setuptools twine
- name: Build package
run: python -m build
- name: Run twine check
run: twine check dist/*
- name: Upload dist folder
uses: actions/upload-artifact@v3
with:
name: hexrec-dist-py${{ matrix.python-version }}
path: dist
if-no-files-found: error