fixing workflow
Some checks failed
Python unit tests / unittests (push) Failing after 5s

This commit is contained in:
Louis Heredero 2025-01-24 13:32:23 +01:00
parent 6c4e23ac44
commit da4a370f59
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7

View File

@ -1,6 +1,6 @@
name: Python unit tests name: Python unit tests
run-name: ${{ gitea.actor }} is running unit tests run-name: ${{ gitea.actor }} is running unit tests
on: [push] on: [push, workflow_dispatch]
jobs: jobs:
unittests: unittests:
@ -12,6 +12,7 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.13' python-version: '3.13'
cache: 'pip'
- name: Test with unittest - name: Test with unittest
run: | run: |
pip install unittest pip install unittest