Skip to content

[pre-commit.ci] pre-commit autoupdate #783

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #783

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
install-linux:
name: (Linux) Install package and run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and test
run: |
sudo apt-get update
sudo apt-get install -y libglu1-mesa
sudo apt-get install -y python3-pip
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN
install-macos:
name: (MacOS) Install package and run tests
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN
install-windows:
name: (Windows) Install package and run tests
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN