File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 19
19
sudo pip install -U pip setuptools wheel
20
20
sudo pip install -r requirements-test.txt
21
21
22
- - name : Lint
23
- run : openwisp-qa-check --skip-checkmigrations
22
+ - name : Install Testing Requirements
23
+ run : |
24
+ sudo pip install -r requirements-test.txt
25
+ sudo curl -sL -o /bin/hadolint "https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64"
26
+ sudo chmod +x /bin/hadolint
27
+
28
+ - name : QA checks
29
+ run : ./run-qa-checks
24
30
25
31
- name : Setup
26
32
run : |
Original file line number Diff line number Diff line change 19
19
- name : Install Testing Requirements
20
20
run : |
21
21
sudo pip install -r requirements-test.txt
22
- sudo curl -sL -o /bin/hadolint "https://github.com/hadolint/hadolint/releases/download/v1.16.3 /hadolint-Linux-x86_64"
22
+ sudo curl -sL -o /bin/hadolint "https://github.com/hadolint/hadolint/releases/download/v2.12.0 /hadolint-Linux-x86_64"
23
23
sudo chmod +x /bin/hadolint
24
24
25
25
- name : QA checks
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ ARG DJANGO_SOURCE=django~=4.2.0
81
81
RUN pip install --no-cache-dir --user --upgrade ${DJANGO_SOURCE}
82
82
83
83
COPY ./openwisp_base/requirements.txt /tmp/openwisp-deploy-requirements.txt
84
- RUN pip install --no-cache-dir --user --upgrade -r /tmp/openwisp-deploy-requirements.txt
85
- RUN pip install --upgrade urllib3~=2.2.1
84
+ RUN pip install --no-cache-dir --user --upgrade -r /tmp/openwisp-deploy-requirements.txt && \
85
+ pip install --no-cache-dir --upgrade urllib3~=2.2.1
86
86
87
87
FROM system
88
88
You can’t perform that action at this time.
0 commit comments