-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (55 loc) · 1.49 KB
/
codequality.yaml
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
name: Python tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install OS level dependencies
run: |
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin python3-psycopg2
- name: Install dependencies
run: |
python -m pip install --upgrade poetry
poetry install
- name: Lint with flake8
if: always()
run: |
poetry run flake8 .
- name: Test with pytest
if: always()
run: |
poetry run pytest
- name: Test mypy
if: always()
run: |
poetry run mypy .
- name: Test with pytest
if: always()
run: |
poetry run black --check .
services:
postgres:
image: postgis/postgis:14-3.2
# Provide the password for postgres. Should be sync'ed with test settings file.
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: post1234
POSTGRES_DBNAME: osm2django
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 49156:5432