-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cirrus.yml
36 lines (34 loc) · 1.12 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
qodana_task:
name: Qodana
container:
image: jetbrains/qodana:latest
env:
CIRRUS_WORKING_DIR: /data/project
generate_report_script:
- /opt/idea/bin/entrypoint --save-report --report-dir=report
always:
results_artifacts:
path: "report/results/result-allProblems.json"
format: qodana
poetry_task:
container:
image: python:slim
setup_script:
- apt-get update -y
- apt-get install -y --no-install-recommends strace poppler-utils software-properties-common build-essential make gcc g++ libmagic-dev nodejs npm
- pip install -U pip setuptools wheel tox tox-gh-actions poetry
install_script:
- poetry install
- npm install
test_script:
- poetry run make lint
- poetry run make test
#tox_task:
# container:
# image: python:slim
# setup_script:
# - apt-get update -y
# - apt-get install -y --no-install-recommends strace poppler-utils software-properties-common build-essential make gcc g++ libmagic-dev
# - pip install -U pip setuptools wheel tox tox-gh-actions poetry
# test_script:
# - tox