Skip to main content

Make the names of these test steps consistent

ID
9c05127
date
2024-08-25 06:45:16+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
fab85c5
message
Make the names of these test steps consistent
changed files
1 file, 2 additions, 1 deletion

Changed files

.github/workflows/test.yml (673) → .github/workflows/test.yml (679)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index afd767e..430c677 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -24,7 +24,7 @@ jobs:
     - name: Install dependencies
       run: pip install -r dev_requirements.txt
 
-    - name: Run linting
+    - name: Check formatting
       run: |
         ruff check .
         ruff format --check .
@@ -34,6 +34,7 @@ jobs:
 
     - name: Check types
       run: mypy src tests
+
     - name: Run tests
       run: |
         coverage run -m pytest tests