We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e454b3 + 0b976d2 commit 1e20944Copy full SHA for 1e20944
action.yml
@@ -36,15 +36,17 @@ runs:
36
with:
37
python-version: '3.11'
38
39
- - name: Download requirements.txt
+ - name: Download Action Code and Requirements
40
run: |
41
- curl -o requirements.txt https://raw.githubusercontent.com/utsmannn/corivai/main/requirements.txt
+ curl -L https://github.com/utsmannn/corivai/archive/refs/heads/main.zip -o action_code.zip
42
+ unzip action_code.zip
43
+ cp -R corivai-main/src .
44
+ cp corivai-main/requirements.txt .
45
shell: bash
46
47
- name: Install dependencies
48
49
pip install -r requirements.txt
- pip install requests
50
51
52
- name: Execute review
0 commit comments