Skip to content

Added error handling for Nvidia GPU, fixed some pylint errors #25

Added error handling for Nvidia GPU, fixed some pylint errors

Added error handling for Nvidia GPU, fixed some pylint errors #25

Workflow file for this run

name: Pylint
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-latest']
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
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 -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
pylint sysig.py