Rename get_cash to cash #15
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
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] |