Skip to content

Rename get_cash to cash #15

Rename get_cash to cash

Rename get_cash to cash #15

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- 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: |
pip install flake8 wheel nose
pip install .
- name: Lint with flake8
run: |
flake8 . --ignore=F403,E501,E123,E128,F401,W504 --exclude=build
- name: Run tests
run: |
nosetests --with-coverage --cover-package=economicsl
- name: Codecov
uses: codecov/[email protected]