Skip to content

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.277 #3419

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.277

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.277 #3419

Workflow file for this run

# Copyright © Michal Čihař <[email protected]>
#
# SPDX-License-Identifier: MIT
name: Distribution
on: [push, pull_request]
jobs:
setup:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-setup-${{ hashFiles('**/requirements*.txt') }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install -r requirements-test.txt
- name: build sdist
run: python ./setup.py sdist
- name: build wheel
run: python ./setup.py bdist_wheel
- name: twine
run: twine check dist/*
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && matrix.os == 'ubuntu-22.04'
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}