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.
1 parent 94f1666 commit c2ce84cCopy full SHA for c2ce84c
.github/workflows/dockerimage.yml
@@ -13,3 +13,15 @@ jobs:
13
- name: Build the Docker image
14
run: docker build --tag scrapedia/privoxy:$(date +%s) --file Dockerfile .
15
working-directory: versions/alpine
16
+
17
+ install shellcheck:
18
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ - name: Install the Docker image
23
+ run: |
24
+ scversion="stable" # or "v0.4.7", or "latest"
25
+ wget -qO- "https://storage.googleapis.com/shellcheck/shellcheck-${scversion?}.linux.x86_64.tar.xz" | tar -xJv
26
+ cp "shellcheck-${scversion}/shellcheck" /usr/bin/
27
+ shellcheck --version
0 commit comments