Skip to content

build(deps): bump django-crispy-forms from 2.1 to 2.2 #249

build(deps): bump django-crispy-forms from 2.1 to 2.2

build(deps): bump django-crispy-forms from 2.1 to 2.2 #249

Workflow file for this run

name: ruff
on:
push:
branches-ignore:
- dependabot/**
- weblate
pull_request:
jobs:
ruff:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/cache@v2.1.5
with:
path: |
~/.cache/pip
~/.cache/pre-commit
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements*.txt') }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Setup Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements-lint.txt
- name: Run ruff
run: |
pre-commit run ruff --all