Skip to content

Bump pytest from 9.1.0 to 9.1.1 (#74) #202

Bump pytest from 9.1.0 to 9.1.1 (#74)

Bump pytest from 9.1.0 to 9.1.1 (#74) #202

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: astral-sh/ruff-action@v3
- run: ruff format --check
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install the package
run: |
python -m pip install --upgrade pip
pip install . --group dev
- name: Create the database
run: |
graphreveal create-database
- name: Run tests
run: pytest