File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Check
2+ on : [ push, pull_request ]
3+ jobs :
4+ build :
5+ runs-on : ubuntu-latest
6+ strategy :
7+ matrix :
8+ python-version : [ "3.12" ]
9+
10+ steps :
11+ - uses : actions/checkout@v4
12+ - name : Set up Python ${{ matrix.python-version }}
13+ uses : actions/setup-python@v5
14+ with :
15+ python-version : ${{ matrix.python-version }}
16+ - name : Display Python version
17+ run : python -c "import sys; print(sys.version)"
18+ - name : Install dependencies
19+ run : |
20+ python -m pip install --upgrade pip
21+ pip install -r requirements.txt
22+ - name : Lint with Ruff
23+ run : |
24+ pip install ruff
25+ ruff check --output-format=github .
26+ continue-on-error : true
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ pydantic==2.9.2
2020pydantic-settings == 2.5.2
2121pydantic_core == 2.23.4
2222python-dotenv == 1.0.1
23- ruff == 0.6.9
2423sniffio == 1.3.1
2524starlette == 0.38.5
2625typing_extensions == 4.12.2
You can’t perform that action at this time.
0 commit comments