forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 883 Bytes
/
nightly-release-test.yml
File metadata and controls
30 lines (27 loc) · 883 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
name: Test with Nightly wheels
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
jobs:
nightly:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macos]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install packages
run: |
pip install --upgrade pip
pip install -U --pre --extra-index-url https://pypi.org/simple -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple .[test,default]
pip list
- name: Test NetworkX
run: |
pytest -n auto --doctest-modules --durations=10 --pyargs networkx