Merge pull request #71 from LucaMingarelli/PR_proxies_and_docs #27
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: Python packaging | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Caching packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
python -m pip install flake8 coverage | |
- name: Analysing the code with Flake8 | |
continue-on-error: true | |
run: | | |
flake8 | |
- name: Running unit tests | |
continue-on-error: true | |
run: | | |
python setup.py test | |
- name: Running coverage tests | |
continue-on-error: true | |
run: | | |
python setup.py --quiet install | |
coverage run --source fredapi.fred fredapi/tests/test_fred.py |