LordBaryhobal da4a370f59
Some checks failed
Python unit tests / unittests (push) Failing after 5s
fixing workflow
2025-01-24 13:32:23 +01:00

19 lines
479 B
YAML

name: Python unit tests
run-name: ${{ gitea.actor }} is running unit tests
on: [push, workflow_dispatch]
jobs:
unittests:
runs-on: ubuntu-20.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Test with unittest
run: |
pip install unittest
python -m unittest