Skip to content

Prepare for PyPI!

Prepare for PyPI! #5

Workflow file for this run

name: Lints
on:
pull_request:
branches: [ "main" ]
paths:
- '.github/workflows/lint.yml'
- 'pypush/**'
- 'tests/**'
- 'pyproject.toml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: '! github.event.pull_request.draft'
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: chartboost/ruff-action@v1
- name: Test install
run: |
python -m pip install --upgrade pip
python -m venv .venv
source .venv/bin/activate
pip install -e '.[test,cli]' -U
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- name: Tests
run: pytest