Skip to content
Snippets Groups Projects
Commit 13f7c60f authored by Agsha Athalla Nurkareem's avatar Agsha Athalla Nurkareem
Browse files

add pipeline

parent 33f6c60c
Branches
Tags
No related merge requests found
Pipeline #56342 canceled with stage
in 0 seconds
image: python:3.10
before_script:
- python --version # For debugging
- pip install isort pylint pytest pyqt6 db-sqlite3 requests
stages:
- linting
- test
isort:
stage: linting
script:
- python -m isort . --check-only
pylint:
stage: linting
script:
- python -m pylint src
pytest:
stage: test
script:
- pytest
only:
- merge_request
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment