Skip to content

Update testing.yml

Update testing.yml #96

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unittests:
runs-on: ubuntu-22.04
strategy:
matrix:
python: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run Python tests
run: |
python --version
python -m pip install -r requirements.txt
python -m unittest tests.test_fetch -v
python -m unittest tests.test_save -v