-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (35 loc) · 913 Bytes
/
python-ci.yml
File metadata and controls
44 lines (35 loc) · 913 Bytes
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
name: Python CI
on: push
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install OS dependencies
run: |
sudo apt update
sudo apt install libxml2-dev libxslt-dev
sudo apt install postgresql-14-postgis-3
- name: Install Poetry
run: |
pipx install poetry==2.1.3
- name: Install project
run: |
poetry install -E jsonlogger
- name: Test with pytest
env:
TZ: Canada/Pacific
run: |
poetry run pytest -m "not online" -v --tb=short --cov --cov-report=term-missing