We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed834e commit 4af5ad1Copy full SHA for 4af5ad1
.github/workflows/cdci.yml
@@ -27,9 +27,13 @@ jobs:
27
python-version: ${{ matrix.python-version }}
28
cache: "pip" # caching pip dependencies
29
cache-dependency-path: "**/pyproject.toml"
30
- - name: Install dependencies
+ - name: lint package code with ruff
31
run: |
32
python -m pip install --upgrade pip
33
+ pip install ruff
34
+ ruff check src
35
+ - name: Install dependencies for testing
36
+ run: |
37
pip install pytest
38
pip install -e .
39
- name: Run tests
0 commit comments