Skip to content

Commit

Permalink
apply pr suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec committed Nov 30, 2023
1 parent 772f5a5 commit a0e95e3
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Python package CI
on: [ push, pull_request ]

jobs:
test:

build:
runs-on: ubuntu-20.04
strategy:
matrix:
Expand All @@ -24,10 +23,23 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel ruff
- name: Run ruff
run: ruff check nucypher_ops
pip install setuptools wheel
- name: Build dist
run: python setup.py sdist bdist_wheel

lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install ruff
run: pip install ruff

- name: Run ruff
run: ruff check --output-format=github nucypher_ops

0 comments on commit a0e95e3

Please sign in to comment.