-
Notifications
You must be signed in to change notification settings - Fork 27
53 lines (46 loc) · 1.31 KB
/
tests.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
name: Tests
on:
push:
branches: [master]
pull_request:
branches:
- "*"
schedule:
- cron: "0 0 * * 1,4"
jobs:
Test:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
environment-file:
- ci/envs/310-minimal.yaml
- ci/envs/310-latest.yaml
- ci/envs/311-latest.yaml
- ci/envs/312-latest.yaml
- ci/envs/312-dev.yaml
include:
- environment-file: ci/envs/312-latest.yaml
os: macos-13 # Intel
- environment-file: ci/envs/312-latest.yaml
os: macos-14 # Apple Silicon
- environment-file: ci/envs/312-latest.yaml
os: windows-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: "latest"
- name: Install pointpats
run: pip install .
- name: Test pointpats
run: |
pytest -v --color yes --cov pointpats --cov-append --cov-report term-missing --cov-report xml .
- uses: codecov/codecov-action@v4