consolidate common action setup + migrate to ruff and pyrefly
This commit is contained in:
30
.github/actions/setup-uv-python/action.yml
vendored
Normal file
30
.github/actions/setup-uv-python/action.yml
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
name: "Setup Python + uv + sync"
|
||||
description: "Checkout, install uv, and uv sync (with optional groups, default Python 3.10)"
|
||||
inputs:
|
||||
python-version:
|
||||
description: "Python version to use"
|
||||
required: false
|
||||
default: "3.10"
|
||||
groups:
|
||||
description: "Comma-separated uv groups to sync (e.g. 'dev,docs'). Leave blank for default deps only."
|
||||
required: false
|
||||
default: ""
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup UV
|
||||
uses: astral-sh/setup-uv@v6
|
||||
|
||||
- name: Sync environment
|
||||
shell: bash
|
||||
run: |
|
||||
GROUP_FLAGS=()
|
||||
if [ -n "${{ inputs.groups }}" ]; then
|
||||
IFS=',' read -ra G <<< "${{ inputs.groups }}"
|
||||
for g in "${G[@]}"; do GROUP_FLAGS+=( "--group" "$(echo $g | xargs)" ); done
|
||||
fi
|
||||
uv sync "${GROUP_FLAGS[@]}" --python "${{ inputs.python-version }}"
|
||||
121
.github/workflows/build.yml
vendored
121
.github/workflows/build.yml
vendored
@@ -30,22 +30,10 @@ jobs:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install UV
|
||||
uses: astral-sh/setup-uv@v6
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
run: |
|
||||
uv venv -p ${{ matrix.python-version }} .venv
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
uv sync --group test
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
python -m pip install ".[cli]"
|
||||
- uses: ./.github/actions/setup-uv-python
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
groups: "test"
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
@@ -77,72 +65,57 @@ jobs:
|
||||
python -m pip install coveralls>=3.0.0
|
||||
coveralls --service=github --finish
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
format:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup (Python + uv + sync)
|
||||
uses: ./.github/actions/setup-uv-python
|
||||
with:
|
||||
python-version: "3.10"
|
||||
groups: "tools"
|
||||
- name: Ruff format (check only)
|
||||
run: uvx ruff format --check .
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
- name: Setup (Python + uv + sync)
|
||||
uses: ./.github/actions/setup-uv-python
|
||||
with:
|
||||
python-version: "3.10"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install -r tests/requirements.txt
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
python -m pip install ".[cli]"
|
||||
|
||||
- name: Run Lint
|
||||
run: |
|
||||
pylint --rcfile tests/pylint.rc peakrdl_busdecoder
|
||||
groups: "tools"
|
||||
- name: Ruff lint
|
||||
run: uvx ruff check --output-format=github .
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
mypy:
|
||||
runs-on: ubuntu-latest
|
||||
typecheck:
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
- name: Setup (Python + uv + sync)
|
||||
uses: ./.github/actions/setup-uv-python
|
||||
with:
|
||||
python-version: "3.10"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install -r tests/requirements.txt
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
python -m pip install ".[cli]"
|
||||
|
||||
- name: Type Check
|
||||
run: |
|
||||
mypy --config-file tests/mypy.ini src/peakrdl_busdecoder
|
||||
- name: Pyrefly type check
|
||||
run: uvx pyrefly check --summarize-errors
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
build:
|
||||
needs:
|
||||
- test
|
||||
- format
|
||||
- lint
|
||||
- mypy
|
||||
- typecheck
|
||||
name: Build distributions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-python@v4
|
||||
name: Install Python
|
||||
- name: Setup (Python + uv + sync)
|
||||
uses: ./.github/actions/setup-uv-python
|
||||
with:
|
||||
python-version: "3.10"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install build
|
||||
|
||||
- name: Build sdist
|
||||
run: python -m build
|
||||
- name: Build Package
|
||||
run: uv build
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
@@ -152,21 +125,21 @@ jobs:
|
||||
dist/*.whl
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
deploy:
|
||||
needs:
|
||||
- build
|
||||
# deploy:
|
||||
# needs:
|
||||
# - build
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
environment: release
|
||||
permissions:
|
||||
id-token: write
|
||||
# runs-on: ubuntu-latest
|
||||
# environment: release
|
||||
# permissions:
|
||||
# id-token: write
|
||||
|
||||
# Only publish when a GitHub Release is created.
|
||||
if: github.event_name == 'release'
|
||||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: dist
|
||||
path: dist
|
||||
# # Only publish when a GitHub Release is created.
|
||||
# if: github.event_name == 'release'
|
||||
# steps:
|
||||
# - uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: dist
|
||||
# path: dist
|
||||
|
||||
- uses: pypa/gh-action-pypi-publish@release/v1
|
||||
# - uses: pypa/gh-action-pypi-publish@release/v1
|
||||
|
||||
Reference in New Issue
Block a user