Skip to content

switch to Ruff linter #1

switch to Ruff linter

switch to Ruff linter #1

Workflow file for this run

name: Ruff linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install gpflow>=2.6.0 numpy pandas==1.5.3 rpy2==3.4.5 ruff scipy statsmodels
- name: Analysing the code with Ruff
run: |
ruff check . --exit-zero
continue-on-error: true