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 ed9b8d3 commit 4663b36Copy full SHA for 4663b36
.github/workflows/python-ci.yml renamed to .github/workflows/tests.yml
@@ -1,4 +1,4 @@
1
-name: Python CI/CD Pipeline
+name: Tests
2
3
on:
4
push:
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
test:
13
- runs-on: ubuntu-latest # This runs the job on the latest Ubuntu
+ runs-on: ubuntu-latest
14
15
steps:
16
- name: Checkout code
@@ -38,8 +38,8 @@ jobs:
38
39
# Run pre-commit hooks
40
- name: Run pre-commit hooks
41
- run: pre-commit run --all-files # This runs all the hooks on all files
+ run: pre-commit run --all-files
42
43
- name: Run tests
44
run: |
45
- pytest *.py # Run your tests using pytest
+ pytest *.py
0 commit comments