Skip to content

Commit

Permalink
Add workflow to test package from notebook (#54)
Browse files Browse the repository at this point in the history
Closes #52
  • Loading branch information
LSYS committed Oct 30, 2022
1 parent b89b75f commit 37dd9b2
Show file tree
Hide file tree
Showing 4 changed files with 632 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/notebook-pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Notebooks-pkg

on: workflow_dispatch

jobs:
build_linux:
name: Build ubuntu wheel for python${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
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 lexicalrichness
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt; fi
- name: Test notebook
run: |
cd docs && runpynb example.ipynb
31 changes: 31 additions & 0 deletions .github/workflows/notebook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Notebooks

on:
push:
branches: [ "master", "patch", "feature", "details-of-measures" ]
pull_request:
branches: [ "master" ]

jobs:
build_linux:
name: Build ubuntu wheel for python${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
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 .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt; fi
- name: Test notebook
run: |
cd docs && runpynb example.ipynb
Loading

0 comments on commit 37dd9b2

Please sign in to comment.