Skip to content

Bump xkcdpass from 1.20.0 to 1.30.0 in /server (#842) #2086

Bump xkcdpass from 1.20.0 to 1.30.0 in /server (#842)

Bump xkcdpass from 1.20.0 to 1.30.0 in /server (#842) #2086

Workflow file for this run

name: Python Linting and Formatting
on: [push]
jobs:
ruff:
name: Ruff (Linting & Formatting)
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r test_requirements.txt
- name: Run ruff linter
run: |
ruff check . --output-format github
- name: Run ruff formatter
run: |
ruff format --check .