We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50de35 commit 2dbb186Copy full SHA for 2dbb186
.github/FUNDING.yml
@@ -0,0 +1 @@
1
+github: [insistence]
.github/workflows/test.yml
@@ -0,0 +1,31 @@
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint-format:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.9"
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install ruff
24
25
+ - name: Run linting
26
27
+ ruff check ruoyi-fastapi-backend
28
29
+ - name: Run format check
30
31
+ ruff format ruoyi-fastapi-backend --check
0 commit comments