Skip to content

ruff fixes

ruff fixes #22

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements.txt -r requirements-ci.txt
pip install '.[workflow-checks,graph-plotting,flask-plotting]'
- name: Run fireworks tests
run: pytest fireworks