LordBaryhobal b23e99f11b
Some checks failed
Python unit tests / unittests (push) Failing after 3s
debugging workflow
2025-01-24 14:05:46 +01:00

21 lines
602 B
YAML

name: Python unit tests
run-name: ${{ gitea.actor }} is running unit tests
on: [push, workflow_dispatch]
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- run: ls -l /opt
- run: ls -l /opt/hostedtoolcache
- run: mkdir /opt/hostedtoolcache
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13.1'
- name: Installing dependencies
run: python -m pip install unittest
- name: Test with unittest
run: python -m unittest