diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 41265a0..d6aff36 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,10 +5,13 @@ on: jobs: test: - runs-on: ubuntu-latest + 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 @@ -17,6 +20,7 @@ jobs: 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