-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (47 loc) · 1.17 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
54
55
56
name: CI
on:
pull_request:
branches:
- main
release:
types: [created]
push:
branches:
- main
schedule:
- cron: "20 23 * * 4"
jobs:
lint:
strategy:
matrix:
os: [
ubuntu-latest,
# windows-latest, # disabled as there are no fiona wheels on windows
macos-latest
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install latest stable
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
architecture: x64
if: matrix.os == 'macOS-latest'
- name: Lint with rustfmt
run: cargo fmt
- name: Lint with clippy
run: cargo clippy --all-targets
- name: Install Python dependencies
run: |
pip install shapely geopandas
- name: Test with cargo - default features
run: cargo test --features test,wkb
- name: Test with cargo - all features
run: cargo test --all-features