Skip to content

Bump werkzeug from 2.3.8 to 3.0.3 in /server #122

Bump werkzeug from 2.3.8 to 3.0.3 in /server

Bump werkzeug from 2.3.8 to 3.0.3 in /server #122

Workflow file for this run

name: Pylint station
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint flake8 wheel
if [ -f station/requirements.txt ]; then pip install -r station/requirements.txt; fi
- name: Linting with pylint
run: |
PYTHONPATH=.:station/ pylint --rcfile .pylint $(git ls-files 'station/*.py')
- name: Linting with flake8
run: |
PYTHONPATH=.:station/ flake8 --config .flake8.ini --color=auto $(git ls-files 'station/*.py')