Skip to content

Commit 7afdcf9

Browse files
committed
Add to github actions
1 parent da884c7 commit 7afdcf9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/server.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@ on:
88
branches: [ "master" ]
99

1010
jobs:
11+
ruff:
12+
defaults:
13+
run:
14+
working-directory: server
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: astral-sh/ruff-action@v3
1119
build-server:
1220
runs-on: ubuntu-latest
21+
needs: ruff
1322
strategy:
1423
matrix:
1524
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
@@ -26,3 +35,4 @@ jobs:
2635
run: |
2736
python -m pip install --upgrade pip
2837
pip install .
38+

0 commit comments

Comments
 (0)