Build(deps-dev): bump tox from 4.23.1 to 4.23.2 #173
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
# This workflow runs the Ruff linter | |
name: Ruff | |
on: | |
push: | |
branches: | |
- '**' | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
uses: Gr1N/setup-poetry@v9 | |
- name: Install library and dependencies | |
run: | | |
poetry run pip install --upgrade pip setuptools | |
poetry install --only linters | |
- name: Lint with Ruff | |
run: | | |
poetry run ruff check --fix . | |
echo "RUFF_SUCCESS=$([ $? -eq 0 ])" >> $GITHUB_ENV | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
if: ${{ !env.RUFF_SUCCESS }} | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
title: "Format Python code with Ruff push" | |
commit-message: "[PATCH] Ruff auto-format" | |
body: | | |
There appear to be some python formatting errors in ${{ github.sha }}. | |
This pull request uses the Ruff formatter to fix some of these issues. | |
base: ${{ github.head_ref }} # Creates pull request onto pull request or commit branch | |
branch: actions/ruff |