Skip to content

Fixes required auth for ksushy (#8754) #4891

Fixes required auth for ksushy (#8754)

Fixes required auth for ksushy (#8754) #4891

---
name: Static Checks Push
on:
push:
branches:
- development
tags:
- v*
jobs:
static-checks:
name: Run static tests using tox
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
steps:
- name: Get Repository Code
id: get_repo_code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run static checks
run: |
pip install tox
tox -c tests/static
...