File tree Expand file tree Collapse file tree 3 files changed +26
-21
lines changed
Expand file tree Collapse file tree 3 files changed +26
-21
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push, pull_request]
3+ jobs :
4+ ruff :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v4
8+ - name : Lint
9+ uses : astral-sh/ruff-action@v2
10+ test :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - name : Set up Python
15+ uses : actions/setup-python@v5
16+ with :
17+ python-version : ' 3.x'
18+ - name : Install dependencies
19+ run : |
20+ python -m pip install --upgrade pip
21+ pip install -r requirements.txt
22+ - name : Test with pytest
23+ run : |
24+ pip install pytest
25+ pytest ./src/
26+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414
1515"""Configuration file for the Sphinx documentation builder."""
1616
17- import sphinx_rtd_theme
1817import os
1918import sys
2019
You can’t perform that action at this time.
0 commit comments