Skip to content

Updated config.ini with POIs and data_fetch script to load enron data… #7

Updated config.ini with POIs and data_fetch script to load enron data…

Updated config.ini with POIs and data_fetch script to load enron data… #7

Workflow file for this run

name: CICD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9 # Change to your desired Python version
- name: Install Poetry
run: |
pip install poetry
env:
POETRY_HOME: $HOME/.poetry
PATH: $HOME/.poetry/bin:$PATH
- name: Install project dependencies
run: |
poetry install
working-directory: ${{ github.workspace }}