24 lines
455 B
YAML
24 lines
455 B
YAML
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
|