chore(deps): update pre-commit hook igorshubovych/markdownlint-cli to v0.42.0 #4817
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright © Michal Čihař <michal@weblate.org> | |
# | |
# SPDX-License-Identifier: MIT | |
name: Distribution | |
on: [push, pull_request] | |
jobs: | |
setup: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 # v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: astral-sh/setup-uv@v3 | |
- name: Install dependencies | |
run: uv pip install --system -r requirements-test.txt | |
- name: build sdist | |
run: python -m build | |
- name: twine | |
run: twine check dist/* | |
- name: Publish package | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && matrix.os == 'ubuntu-latest' | |
uses: pypa/gh-action-pypi-publish@v1.10.2 | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |