Skip to content

Commit 1e20944

Browse files
authored
Merge pull request #57 from utsmannn/develop
Tech: Enhanced action setup by downloading code and requirements, ext…
2 parents 7e454b3 + 0b976d2 commit 1e20944

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

action.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,17 @@ runs:
3636
with:
3737
python-version: '3.11'
3838

39-
- name: Download requirements.txt
39+
- name: Download Action Code and Requirements
4040
run: |
41-
curl -o requirements.txt https://raw.githubusercontent.com/utsmannn/corivai/main/requirements.txt
41+
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 .
4245
shell: bash
4346

4447
- name: Install dependencies
4548
run: |
4649
pip install -r requirements.txt
47-
pip install requests
4850
shell: bash
4951

5052
- name: Execute review

0 commit comments

Comments
 (0)