Expanded on arXiv author list #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
# For more information on conda actions see: https://autobencoder.com/2020-08-24-conda-actions/ | |
# Starter workflow for conda: https://github.com/actions/starter-workflows/blob/main/ci/python-package-conda.yml | |
name: build | |
on: | |
push: | |
branches: [ main, actions ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: [3.8, 3.9, '3.10', 3.11, 3.12] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup latex | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y --no-install-recommends \ | |
texlive-fonts-recommended \ | |
texlive-latex-extra \ | |
texlive-latex-recommended \ | |
texlive-publishers \ | |
texlive-plain-generic | |
- name: Setup conda | |
run: | | |
# Add $CONDA/bin to built-in path | |
echo $CONDA/bin >> $GITHUB_PATH | |
conda update -q conda | |
conda info | |
- name: Create conda environment | |
run: | | |
conda create -y -q -n env python=${{ matrix.python-version }} numpy | |
- name: Install pynose # nose becomes deprecated for Python 3.12 | |
run: | | |
source activate env | |
pip install pynose | |
- name: Install package | |
run: | | |
source activate env | |
python setup.py install | |
- name: Lint with flake8 | |
if: ${{ false }} | |
run: | | |
source activate env | |
conda install -q 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. | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pynose | |
run: | | |
source activate env | |
nosetests -v --exe tests |