Skip to content

Adds option to bypass strict HTTPS checks (#243) #781

Adds option to bypass strict HTTPS checks (#243)

Adds option to bypass strict HTTPS checks (#243) #781

Workflow file for this run

name: Style Checks
on: ["push", "pull_request"]
jobs:
style:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: |
pip install -U -r requirements.txt
- name: Style Checks
run: |
invoke style