Add CI workflow to test code with older versions of python #6

Merged
nathanwoodburn merged 9 commits from feat/ci-testing into main 2025-09-02 16:08:37 +10:00
Showing only changes of commit d483cfdcfd - Show all commits

40
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,40 @@
name: Test Python Compatibility
run-name: Test Python Compatibility
on:
push:
jobs:
Python-Compatibility:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi
pip install pytest
- name: Run tests
run: |
echo "Testing with Python ${{ matrix.python-version }}"
python -m pytest main.py
- name: Check compatibility
run: |
# Add any additional compatibility checks if needed
python --version
python -c "import sys; print(f'Python {sys.version_info.major}.{sys.version_info.minor} compatibility test passed')"