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 b5aeb32 commit cfede85Copy full SHA for cfede85
action.yml
@@ -14,6 +14,11 @@ inputs:
14
required: true
15
default: '3.10'
16
17
+ python-requirements-dir:
18
+ description: Path to directory with requirements file(s) to install
19
+ required: false
20
+ default: 'requirements/'
21
+
22
optimize-postgres:
23
description: >
24
Tune postgres for non-durable but faster tests. Requires 'pg-service' name. Set
@@ -81,7 +86,7 @@ runs:
81
86
with:
82
87
python-version: ${{ inputs.python-version }}
83
88
cache: 'pip'
84
- cache-dependency-path: 'requirements/*.txt'
89
+ cache-dependency-path: '${{ inputs.python-requirements-dir }}*.txt'
85
90
91
- name: Install backend dependencies
92
run: |
0 commit comments