added unittest CI/CD workflow
All checks were successful
Python unit tests / unittests (push) Successful in 5s
All checks were successful
Python unit tests / unittests (push) Successful in 5s
This commit is contained in:
17
.gitea/workflows/tests.yaml
Normal file
17
.gitea/workflows/tests.yaml
Normal file
@ -0,0 +1,17 @@
|
||||
name: Python unit tests
|
||||
run-name: ${{ gitea.actor }} is running unit tests
|
||||
on: [push, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
unittests:
|
||||
runs-on: ubuntu-latest
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.13"
|
||||
- name: Test with unittest
|
||||
run: python -m unittest
|
Reference in New Issue
Block a user