We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3915a4d commit 50be3f4Copy full SHA for 50be3f4
.github/workflows/codeql.yml
@@ -93,7 +93,7 @@ jobs:
93
- name: Generate Pylint Badge
94
id: generate-badge
95
run: |
96
- score=$(tail -n 1 pylint-report.txt | grep -oP '\d+\.\d+')
+ score=$(grep -oP 'Your code has been rated at \K[0-9]+\.[0-9]+' pylint-report.txt)
97
if [ -z "$score" ]; then
98
score="0.0"
99
fi
Dockerfile
@@ -19,7 +19,6 @@ RUN apt-get update && \
19
apt-get install -y --no-install-recommends git && \
20
pip install --no-cache-dir -r /steam-stats/requirements.txt && \
21
apt-get purge -y --auto-remove && \
22
- playwright uninstall chromium && \
23
apt-get clean && \
24
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
25
0 commit comments