Bump cryptography from 42.0.4 to 43.0.1 in /server #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
# Don't support python 3.11 yet, because one of the major dependencies (poliastro) doesn't support it yet. | |
python-version: ["3.9", "3.10"] | |
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 server/requirements.txt ]; then pip install -r server/requirements.txt; fi | |
- name: Linting with pylint | |
run: | | |
PYTHONPATH=.:server/ pylint --rcfile .pylint $(git ls-files 'server/*.py') | |
- name: Linting with flake8 | |
run: | | |
PYTHONPATH=.:server/ flake8 --config .flake8.ini --color=auto $(git ls-files 'server/*.py') |