-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (66 loc) · 1.83 KB
/
Copy pathci.yml
File metadata and controls
74 lines (66 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: ci
on:
push:
branches: [main, master]
pull_request:
# If new code is pushed to a PR branch, then cancel in progress workflows for that PR. Ensures that
# we don't waste CI time
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- name: ruff format
run: uv run ruff format --check
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- name: ruff check
run: uv run ruff check
mypy:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- name: mypy
run: uv run mypy .
unit:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- name: tests/unit
run: uv run pytest tests/unit/ -v
e2e:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- uses: ./.github/actions/start-fastapi-server
with:
port: 8000
- name: tests/e2e
run: uv run pytest tests/e2e/ -v
env:
S3_ENDPOINT_URL: http://127.0.0.1:8000
third-party-s3-tests:
name: tests/third_party/s3-tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
- uses: ./.github/actions/start-fastapi-server
with:
port: 8000
- name: tests/third_party/s3-tests
run: |
cd tests/third_party/s3-tests
uv run tox -- s3tests_boto3/functional/test_s3.py -m inmemory
env:
S3TEST_CONF: s3tests.conf