Skip to content

CI

CI #41

Workflow file for this run

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