-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.02 KB
/
ci.yml
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
41
42
name: CI
on:
push:
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: 📥 checkout
uses: actions/checkout@v4
- name: ⚡️ setup uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
enable-cache: true
cache-suffix: 2024-09-08 09:10
cache-dependency-glob: |
pyproject.toml
uv.lock
- name: 🧪 pytest
run: uv run pytest --cov fastapi_async_sqla --cov-report=term-missing --cov-report=xml
- name: "🐔 codecov: upload test coverage"
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Ruff:
runs-on: ubuntu-latest
steps:
- name: 📥 checkout
uses: actions/checkout@v4
- name: ⚡️ setup uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
enable-cache: true
cache-suffix: 2024-09-08 09:10
cache-dependency-glob: |
pyproject.toml
uv.lock
- name: 🐶 ruff
run: uv run ruff check