From ab8f308256156c84c24e2cd99d43fc0c29a354b4 Mon Sep 17 00:00:00 2001 From: JustGlowing Date: Wed, 17 Jan 2024 11:31:11 +0000 Subject: [PATCH] del unused workflow --- .github/workflows/run_examples.yml | 35 ------------------------------ 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/run_examples.yml diff --git a/.github/workflows/run_examples.yml b/.github/workflows/run_examples.yml deleted file mode 100644 index 1f3720f..0000000 --- a/.github/workflows/run_examples.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Run examples - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.10"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install numpy minisom pandas matplotlib - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Run notebooks - run: | - python -m pip install jupyter nbconvert nbformat - jupyter nbconvert --to notebook --execute examples/BasicUsage.ipynb --ExecutePreprocessor.kernel_name='python3' --output ../notebook_executed