Skip to content

chore(ruff): configure ruff #6

chore(ruff): configure ruff

chore(ruff): configure ruff #6

Workflow file for this run

name: Python package CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel ruff
- name: Run ruff
run: ruff check nucypher_ops
- name: Build dist
run: python setup.py sdist bdist_wheel