From 11765d3c75aae43f1af7a021721e492ece452320 Mon Sep 17 00:00:00 2001 From: srinivas4u Date: Thu, 19 Dec 2024 13:35:17 +0530 Subject: [PATCH] Update python-package-conda.yml Signed-off-by: srinivas4u --- .github/workflows/python-package-conda.yml | 47 +++++++++------------- 1 file changed, 19 insertions(+), 28 deletions(-) diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index f358604..727a01f 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -1,34 +1,25 @@ -name: Python Package using Conda +name: Deploy Streamlit App to GitHub Pages -on: [push] +on: + push: + branches: + - main jobs: - build-linux: + deploy: runs-on: ubuntu-latest - strategy: - max-parallel: 5 steps: - - uses: actions/checkout@v4 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: '3.10' - - name: Add conda to system path - run: | - # $CONDA is an environment variable pointing to the root of the miniconda directory - echo $CONDA/bin >> $GITHUB_PATH - - name: Install dependencies - run: | - conda env update --file environment.yml --name base - - name: Lint with flake8 - run: | - conda install flake8 - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - conda install pytest - pytest + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.8' + - name: Install dependencies + run: | + pip install -r requirements.txt + - name: Deploy to GitHub Pages + uses: crazy-max/ghaction-github-pages@v2 + with: + target_branch: gh-pages + build_dir: .