We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d2c70 commit d5bdb90Copy full SHA for d5bdb90
1 file changed
.github/workflows/test.yml
@@ -8,13 +8,27 @@ on:
8
workflow_call:
9
10
jobs:
11
+ pre-commit:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v4
16
+ with:
17
+ python-version: "3.13"
18
+ - uses: actions/cache@v4
19
20
+ path: ~/.cache/pre-commit
21
+ key: ${{ runner.os }}-{{ hashFiles('.pre-commit-config.yaml') }}
22
+ - uses: pre-commit/action@v3.0.1
23
+
24
privoxy:
25
strategy:
26
matrix:
27
privoxy_version: [4.0.0]
28
python-version: [3.13]
29
fail-fast: false
30
runs-on: ubuntu-latest
31
+ needs: pre-commit
32
33
steps:
34
- uses: actions/cache@v4
0 commit comments