-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 957 Bytes
/
tests.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: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
- Windows
- MacOs
py:
- "3.11"
- "3.10"
- "3.9"
steps:
- uses: actions/checkout@v3
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- name: Setup Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.2
- name: Install dependencies
run: |
poetry update
poetry run pip install --upgrade setuptools
poetry install
poetry run pyproj sync --area-of-use=Canada
- name: Run tests
run: poetry run pytest