diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 16:09:19 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 16:21:41 -0500 |
commit | e7749461bfa5abc00b946f844a85b25b6c12ec85 (patch) | |
tree | 254f2c17d0d231b8512a6016665a3a89ce477b80 /.github/workflows/python.yml | |
parent | Unleash the locust CI (diff) | |
download | locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.gz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.bz2 locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.lz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.xz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.zst locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.zip |
Attempt to fix
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/python.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index c504855..27a8bf8 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -2,9 +2,9 @@ name: Python on: push: - # paths: - # - '**.py' - # - 'pyproject.toml' + paths: + - '**.py' + - 'pyproject.toml' pull_request: paths: - '**.py' @@ -21,7 +21,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Test |