Skip to content

Bump scipy from 1.4.1 to 1.10.0 #34

Bump scipy from 1.4.1 to 1.10.0

Bump scipy from 1.4.1 to 1.10.0 #34

Workflow file for this run

# github actions development workflow
name: pyesg CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt .[dev]
- name: Run pre-commit checks
run: |
pre-commit run --all-files
- name: Run test suite
run: |
coverage run --source=pyesg -m unittest discover --verbose
- name: Publish coverage report
run: |
pip install coveralls==3.0.0
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}