Skip to content

feat: enhance FastAPILimiter with Redis type hinting and improve type… #92

feat: enhance FastAPILimiter with Redis type hinting and improve type…

feat: enhance FastAPILimiter with Redis type hinting and improve type… #92

Workflow file for this run

name: ci
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v6
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --all-groups
- name: CI
run: make ci