Skip to content

Update pre-commit hook renovatebot/pre-commit-hooks to v38.59.1 #41

Update pre-commit hook renovatebot/pre-commit-hooks to v38.59.1

Update pre-commit hook renovatebot/pre-commit-hooks to v38.59.1 #41

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [$default-branch]
pull_request:
branches: ["main"]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
poetry-version: ["1.8.2"]
os:
- ubuntu-22.04
- macos-14 # arm64
- macos-12 # x86_64
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Build with poetry
run: |
poetry build
- uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.python-version }}-${{ matrix.os }}
path: dist/*.whl