-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathci.yml
More file actions
44 lines (33 loc) · 894 Bytes
/
Copy pathci.yml
File metadata and controls
44 lines (33 loc) · 894 Bytes
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
name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '42 5 * * *'
jobs:
test:
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
runs-on: ${{matrix.runner}}
name: OS ${{matrix.runner}} Python ${{matrix.python-version}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Check Python version
run: python -V
- name: Test with pytest
run: pytest -vs
- name: Run examples to see if they work
run: python examples.py