aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/python.yml
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-08-06 21:42:06 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-08-06 21:42:06 -0500
commit54efd6488c27d54b2ff3fc946d489f1b0e047177 (patch)
tree1a7b0d631cde3517b6bd91c6528606d8fdd76cc1 /.github/workflows/python.yml
parentBump more GHA files (diff)
downloadlocusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.gz
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.bz2
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.lz
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.xz
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.zst
locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.zip
Allow CI to run when CI files are edited
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github/workflows/python.yml')
-rw-r--r--.github/workflows/python.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 27a8bf8..9d20089 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -3,12 +3,14 @@ name: Python
on:
push:
paths:
- - '**.py'
- - 'pyproject.toml'
+ - "**.py"
+ - "pyproject.toml"
+ - ".github/workflows/python.yml"
pull_request:
paths:
- - '**.py'
- - 'pyproject.toml'
+ - "**.py"
+ - "pyproject.toml"
+ - ".github/workflows/python.yml"
jobs:
build:
@@ -23,6 +25,6 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
- python-version: '3.x'
+ python-version: "3.x"
- name: Test
- run: python -m unittest discover -s src/locusts-r-us \ No newline at end of file
+ run: python -m unittest discover -s src/locusts-r-us