PENG-3689 - Introducing support for datasets functionality #145
Workflow file for this run
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: NS1 Python SDK | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python setup.py install | |
python setup.py bdist_wheel | |
python -m pip install --upgrade pip | |
pip install flake8 black | |
- name: Lint with flake8 | |
run: | | |
# Ignore the line length rule because black will handle that | |
# and flake8 doesn't allow long comment lines. | |
flake8 . --exclude=.tox --count --show-source --statistics --extend-ignore=E501 | |
- name: Lint with black | |
run: | | |
black . --check -l 79 --diff | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [2.7, 3.7] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade setuptools | |
python setup.py install | |
python setup.py bdist_wheel | |
python -m pip install --upgrade pip | |
pip install pytest mock | |
- name: Test with pytest | |
run: | | |
pytest |