File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1414 - name : Checkout Repository
1515 uses : actions/checkout@v3
1616
17- - name : Install Kaggle CLI
17+ - name : Install Dependencies
1818 run : pip install kaggle
1919
2020 - name : Set Up Kaggle API Credentials
2626 - name : Verify Kaggle Authentication
2727 run : kaggle datasets list # Should return dataset lists if authentication is successful
2828
29+ - name : Create Dataset Directory
30+ run : mkdir -p dataset
31+
2932 - name : Download Dataset from Kaggle Competition
30- run : kaggle competitions download -c ieee-fraud-detection --unzip -p dataset/
33+ run : kaggle competitions download -c ieee-fraud-detection -p dataset/
34+
35+ - name : Extract Dataset
36+ run : unzip -o "dataset/*.zip" -d dataset/ && rm dataset/*.zip
3137
3238 - name : Commit and Push Dataset to GitHub
3339 run : |
You can’t perform that action at this time.
0 commit comments