diff --git a/.github/workflows/install-dependencies.yml b/.github/workflows/install-dependencies.yml new file mode 100644 index 0000000..3355c8a --- /dev/null +++ b/.github/workflows/install-dependencies.yml @@ -0,0 +1,24 @@ +name: Install Python Dependencies + +on: + push: + branches: + - main + +jobs: + install-dependencies: + 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.x # Escolha a versão do Python desejada + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pandas plotly streamlit