mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-02-07 23:42:46 -06:00
Bumps the actions group with 1 update: [j178/prek-action](https://github.com/j178/prek-action). Updates `j178/prek-action` from 1.1.0 to 1.1.1 - [Release notes](https://github.com/j178/prek-action/releases) - [Commits](https://github.com/j178/prek-action/compare/v1.1.0...v1.1.1) --- updated-dependencies: - dependency-name: j178/prek-action dependency-version: 1.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
556 B
YAML
25 lines
556 B
YAML
name: Lint
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'translations**'
|
|
pull_request:
|
|
branches-ignore:
|
|
- 'translations**'
|
|
concurrency:
|
|
group: lint-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
lint:
|
|
name: Linting via prek
|
|
runs-on: ubuntu-slim
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6.0.2
|
|
- name: Install Python
|
|
uses: actions/setup-python@v6.2.0
|
|
with:
|
|
python-version: "3.14"
|
|
- name: Run prek
|
|
uses: j178/prek-action@v1.1.1
|