Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 57763970 authored by GotthardG's avatar GotthardG
Browse files

refining ci pipeline

parent c8e488c0
No related branches found
No related tags found
No related merge requests found
Pipeline #44566 failed
......@@ -30,8 +30,8 @@ lint:
stage: test
script:
- source $VIRTUAL_ENV/bin/activate
- pip install flake8
- flake8 backend/ # Run linting for code quality
- pip install pre-commit # Install pre-commit in the CI environment
- pre-commit run --all-files # Run all pre-commit hooks on the entire codebase
deploy:
stage: deploy
......
repos:
- repo: https://github.com/psf/black
rev: 23.7.0 # Use the latest stable version
hooks:
- id: black
args: [--check, --diff]
- repo: https://github.com/pycqa/flake8
rev: 6.1.0 # Use the latest stable version
hooks:
- id: flake8
args: []
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment