Merge pull request #18 from 16bravo/feature/ajout_json_page_html_stat… #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DB Initialisation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
init_db: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Create .kaggle directory | |
run: mkdir -p /home/runner/.kaggle | |
- name: Set up Kaggle credentials | |
run: echo "$KAGGLE_JSON" > /home/runner/.kaggle/kaggle.json && chmod 600 /home/runner/.kaggle/kaggle.json | |
env: | |
KAGGLE_JSON: ${{ secrets.KAGGLE_JSON }} | |
- name: Run initialization script | |
run: python scripts/db_initialisation.py |