Skip to content

Commit

Permalink
clean up a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfriend committed Dec 29, 2024
1 parent f3d5ece commit 7700352
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: lint
name: lint_and_coverage

on:
push:
Expand All @@ -8,15 +8,15 @@ on:

jobs:
linting:
name: Lint
name: Lint and Coverage
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v4
with:
submodules: recursive

- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5
with:
python-version: 3.11

Expand All @@ -26,7 +26,7 @@ jobs:
- name: Run Linting
uses: astral-sh/ruff-action@v3

- name: Coverage
- name: Coverage Requirement
run: |
pip install cython
cythonize tests/test_cython/cython_example.pyx
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ purge: clear
test:
./env/bin/pip install cython
./env/bin/cythonize tests/test_cython/cython_example.pyx
./env/bin/pytest
./env/bin/pytest --cov-fail-under=99

lint:
./env/bin/ruff check
Expand Down

0 comments on commit 7700352

Please sign in to comment.