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 4a48a2b + ef57c92 commit 7dd5e19Copy full SHA for 7dd5e19
1 file changed
action.yml
@@ -3,21 +3,25 @@ description: 'Setup an OpenSAFELY environment'
3
4
inputs:
5
python-version:
6
- description: 'The Python version to use'
+ description: 'The Python version to use. A value is required in order to install Python'
7
required: false
8
install-just:
9
- description: 'Install just'
+ description: 'If true, this installs Just'
10
11
12
runs:
13
using: 'composite'
14
15
steps:
16
- uses: actions/checkout@v3
17
+ with:
18
+ fetch-depth: 0
19
- uses: "actions/setup-python@v4"
20
if: ${{ inputs.python-version }}
21
with:
22
python-version: ${{ inputs.python-version }}
23
+ cache: "pip"
24
+ cache-dependency-path: requirements.*.txt
25
- name: Install just
26
if: ${{ inputs.install-just }}
27
run: |
0 commit comments