We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 696b2ee + 5d0409d commit 4d1e36eCopy full SHA for 4d1e36e
.github/workflows/validate.yml
@@ -9,6 +9,4 @@ jobs:
9
10
- name: Run test
11
run: |
12
- podman run --rm -v .:/simpleline:Z --workdir /simpleline registry.fedoraproject.org/fedora:rawhide sh -c " \
13
- dnf install -y python3-pylint python3-gobject-base make; \
14
- make ci"
+ make container-ci
Makefile
@@ -147,3 +147,9 @@ pypi-upload:
147
148
.PHONY: ci
149
ci: check test
150
+
151
+# Run tests in the container but with fixed pylint version
152
+container-ci:
153
+ podman run --pull=always --rm -v .:/simpleline:Z --workdir /simpleline quay.io/centos/centos:stream9 sh -c " \
154
+ dnf install -y python3-pip python3-gobject-base make && pip3 install pocketlint 'pylint==2.8.3' ; \
155
+ make ci"
0 commit comments