forked from ariel-research/networkz
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 994 Bytes
/
example.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
name: example
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
base:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macos, windows]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Python # Set Python version
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install pip and pytest
- name: Install packages
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install --upgrade pip wheel setuptools
python -m pip install -r requirements/default.txt
python -m pip install -r requirements/test.txt
python -m pip install .
python -m pip list
- name: Test with pytest
run: pytest --doctest-modules