-
Notifications
You must be signed in to change notification settings - Fork 828
53 lines (44 loc) · 1.22 KB
/
test-minimal.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: Test minimal versions
on:
schedule:
- cron: "0 7 * * 1" # Every Monday at 07:00 UTC
workflow_dispatch:
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
defaults:
run:
shell: bash -elo pipefail {0}
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Create environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
cache-environment: true
environment-file: tests/environments/env-test-minimal.yml
post-cleanup: none
- name: Install OSMnx
run: |
pip install -e .
conda list
conda info --all
- name: Lint code
run: |
SKIP=no-commit-to-branch pre-commit run --all-files
hatch build --clean
twine check --strict ./dist/*
- name: Test docs
run: |
make -C ./docs html
python -m sphinx -b linkcheck ./docs/source ./docs/build/linkcheck
- name: Test code
run: pytest --cov=./osmnx --cov-report=term-missing --verbose