Skip to content

Upgrading requests lib version (#75) #58

Upgrading requests lib version (#75)

Upgrading requests lib version (#75) #58

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.5, 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 requirements
run: pip install -r requirements.txt
- name: Run tests
run: pytest -v --cov=filestack tests
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install tools
run: pip install flake8 bandit
- name: Run analysis
run: |
flake8 filestack/
bandit -r -lll filestack/