Skip to content

Commit 4663b36

Browse files
committed
rename workflow
1 parent ed9b8d3 commit 4663b36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-ci.yml renamed to .github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python CI/CD Pipeline
1+
name: Tests
22

33
on:
44
push:
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ubuntu-latest # This runs the job on the latest Ubuntu
13+
runs-on: ubuntu-latest
1414

1515
steps:
1616
- name: Checkout code
@@ -38,8 +38,8 @@ jobs:
3838

3939
# Run pre-commit hooks
4040
- name: Run pre-commit hooks
41-
run: pre-commit run --all-files # This runs all the hooks on all files
41+
run: pre-commit run --all-files
4242

4343
- name: Run tests
4444
run: |
45-
pytest *.py # Run your tests using pytest
45+
pytest *.py

0 commit comments

Comments
 (0)