Skip to content

chore(deps): bump j178/prek-action from 2 to 2.0.6 #190

chore(deps): bump j178/prek-action from 2 to 2.0.6

chore(deps): bump j178/prek-action from 2 to 2.0.6 #190

Workflow file for this run

# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR) <https://dlr.de>
#
# SPDX-License-Identifier: MIT
name: Linting Python code (flake8)
on:
push:
branches:
- main
- develop
- releases/**
pull_request:
branches:
- main
- develop
permissions:
contents: read
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
- name: Install Python dependencies
run: |
uv sync --group ci
- name: Lint with flake8
run: |
uv run flake8 src/pycasx