Skip to content

Sc 39 docs (#77)

Sc 39 docs (#77) #10

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: "pip"
cache-dependency-path: "**/setup.cfg"
- name: Install Build Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel build twine
- name: Build Package
run: |
python -m build
#- name: Upload Build Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: dist-artifacts
# path: dist/
- name: Check Package
run: |
twine check --strict dist/*