Skip to content

Add a PPU component #214

Add a PPU component

Add a PPU component #214

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('.github/dependabot/constraints.txt') }}
- name: Install dependencies
run: |
python3 -m pip install .[test] --constraint .github/dependabot/constraints.txt
- name: Test with pytest
run: |
python3 -m pytest .