Skip to content

Commit

Permalink
Fix data directory copy issue in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GoMightyAlgorythmGo committed May 17, 2024
1 parent f297217 commit 04c8d7b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,16 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements_pip.txt
- name: Copy data directory contents
- name: Ensure data directory
run: mkdir -p ./data

- name: Copy data files
run: |
mkdir -p ./data
cp -r ./data/* ./data/
cp ./data/ProtocollChat2_15_5_24.txt ./data_copy/ProtocollChat2_15_5_24.txt
cp ./data/activitys_12_3_24.txt ./data_copy/activitys_12_3_24.txt
cp ./data/features.csv ./data_copy/features.csv
cp ./data/preprocessed_chat.csv ./data_copy/preprocessed_chat.csv
cp ./data/scores_10_3_24_.txt ./data_copy/scores_10_3_24_.txt
- name: Run feature extraction tests
run: python scripts/test_feature_extraction.py
Expand Down

0 comments on commit 04c8d7b

Please sign in to comment.