forked from carsonfarmer/fastpair
-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (79 loc) · 2.12 KB
/
testing.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Continuous Integration
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: '59 23 * * *'
workflow_dispatch:
inputs:
version:
description: Manual CI Run
default: test
required: false
jobs:
tests:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest]
environment-file: [
ci/py310-oldest.yaml,
ci/py311-latest.yaml,
ci/py312-latest.yaml,
ci/py312-dev.yaml,
]
include:
- environment-file: ci/py312-latest.yaml
os: macos-13 # Intel
- environment-file: ci/py312-latest.yaml
os: macos-14 # Apple Silicon
- environment-file: ci/py312-latest.yaml
os: windows-latest
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags.
- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: "latest"
- name: install package
run: "pip install -e ."
- name: environment info
run: "micromamba info && micromamba list"
- name: run tests
run: |
pytest \
fastpair/ \
--verbose \
-r a \
--color yes \
--cov fastpair \
--cov-append \
--cov-report term-missing \
--cov-report xml . \
- name: run doctests (dev only)
if: contains(matrix.environment-file, 'dev')
run: |
pytest \
fastpair/ \
--verbose \
-r a \
--color yes \
--doctest-only
- name: codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}