Skip to content

feat: upgrade FastAPI-Limiter to version 0.2.0, replacing Redis with … #95

feat: upgrade FastAPI-Limiter to version 0.2.0, replacing Redis with …

feat: upgrade FastAPI-Limiter to version 0.2.0, replacing Redis with … #95

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