We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d24bf commit a995136Copy full SHA for a995136
1 file changed
.github/workflows/unit-tests-recipes.yml
@@ -110,9 +110,20 @@ jobs:
110
steps:
111
- name: Setup proxy cache
112
uses: nv-gha-runners/setup-proxy-cache@main
113
+
114
- name: Checkout repository
115
uses: actions/checkout@v4
116
117
+ - name: Setup python
118
+ uses: actions/setup-python@v5
119
+ with:
120
+ python-version: "3.12"
121
122
+ - name: Install ci script dependencies
123
+ run: |
124
+ python -m pip install --upgrade pip
125
+ pip install platformdirs
126
127
- name: Run tests
128
env:
129
DIRS_JSON: ${{ needs.changed-dirs.outputs.dirs }}
0 commit comments