Skip to content

Fix CI to support py 3.7 again #32

Fix CI to support py 3.7 again

Fix CI to support py 3.7 again #32

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:
- python-version: '3.7'
os: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install libgirepository1.0-dev -y
pip install -r requirements.txt
pip install tox-gh-actions
- name: Test with tox
run: tox