-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1.08 KB
/
ci.yml
File metadata and controls
40 lines (37 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]"
- run: ruff check .
- run: mypy fila/ --ignore-missing-imports
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]"
- name: Download fila-server
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release download dev-latest --repo faiscadev/fila --pattern "fila-dev-*-linux-amd64.tar.gz"
tar xzf fila-dev-*-linux-amd64.tar.gz
mv fila-dev-*/fila-server /usr/local/bin/
mv fila-dev-*/fila /usr/local/bin/
chmod +x /usr/local/bin/fila-server /usr/local/bin/fila
- run: python -m pytest tests/ -v
env:
FILA_SERVER_BIN: /usr/local/bin/fila-server