Fix devtest pip install #406
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comitup Nox Tests | |
on: | |
push: | |
branches: | |
- main | |
- test | |
pull_request: | |
jobs: | |
noxtest: | |
name: Nox Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-alpha - 3.13.0"] | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update apt registry | |
run: sudo apt-get update | |
- name: Install deb packages | |
run: > | |
sudo apt-get install | |
libcairo2-dev gobject-introspection libgirepository1.0-dev | |
python3-dev libdbus-glib-1-dev libdbus-1-dev | |
- name: Install pip dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install nox | |
- name: Run nox tests | |
run: | | |
python -m nox |