feat: Add separate CI workflows for Go, Python, and shell tests; remove legacy test workflow

This commit is contained in:
2026-05-24 21:55:33 +02:00
parent 2da0c7428d
commit 4845aae7f5
5 changed files with 61 additions and 52 deletions
+23
View File
@@ -0,0 +1,23 @@
on:
push:
paths:
- 'simple-ca.py'
- 'test_simple_ca.py'
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install pytest
run: pip install pytest
- name: Run python tests
run: python3 -m pytest test_simple_ca.py -v