Skip to content

Update shell integration instructions in README to include zsh and ad… #25

Update shell integration instructions in README to include zsh and ad…

Update shell integration instructions in README to include zsh and ad… #25

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build-distribution:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build tool
run: python -m pip install --upgrade pip build
- name: Build distributions
run: python -m build
- name: Upload distribution artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/*