Skip to content

♻️ refactor: use build replace download and add musllinux_1_2_i686musllinux_1_2_armv7l #40

♻️ refactor: use build replace download and add musllinux_1_2_i686musllinux_1_2_armv7l

♻️ refactor: use build replace download and add musllinux_1_2_i686musllinux_1_2_armv7l #40

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main]
pull_request:
merge_group:
workflow_dispatch:
jobs:
lint-and-fmt-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
architecture: ["x64"]
name: Lint and Format (Python)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies
env:
CIBW_ARCHS: "x86_64"
CIBW_PLATFORM: "manylinux_2_17"
run: |
uv sync --all-extras --dev
- uses: pre-commit/action@v3.0.1