-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (50 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
name: CI
on:
push:
paths:
- "fbsurvivor/**"
- "requirements/**"
jobs:
check:
name: Continuous Integration
runs-on: ubuntu-latest
env:
ENV: dev
DOMAIN: http://127.0.0.1:8000
SECRET_KEY: abcdefghijklmnop
PGDATABASE: ci
PGUSER: postgres
PGPASSWORD: password
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: ci
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt --no-deps
- name: Ruff Linting Check
run: ruff check .
- name: Ruff Imports Check
run: ruff check --select I
- name: Ruff Format Check
run: ruff format --check
- name: Run Tests
run: pytest -p no:warnings .