Skip to content

Don't try to use AuthProviderSilent if there is no token cache file. #340

Don't try to use AuthProviderSilent if there is no token cache file.

Don't try to use AuthProviderSilent if there is no token cache file. #340

Workflow file for this run

name: linting
on:
pull_request:
push: { branches: [main] }
jobs:
black:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: psf/black@stable
with:
options: "--check --verbose --line-length 79"
src: "./src/sumo/wrapper"
flake8:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Analysing the code with flake8
run: |
flake8 src/sumo/wrapper --config .flake8