-
Notifications
You must be signed in to change notification settings - Fork 6
58 lines (49 loc) · 1.44 KB
/
bleeding-edge.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
54
55
56
57
58
name: CI (bleeding edge)
# this workflow is heavily inspired from pandas, see
# https://github.com/pandas-dev/pandas/blob/master/.github/workflows/python-dev.yml
# goals: check stability against
# - dev version of Python, numpy, and matplotlib
# - building with future pip default options
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/bleeding-edge.yaml
schedule:
# run this every day at 3 am UTC
- cron: 0 3 * * *
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Dev upstream
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python Dev Version
uses: actions/setup-python@v4
with:
python-version: 3.11-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --pre \
--extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
numpy matplotlib
- name: Build library
run: |
python -m pip install . --no-build-isolation
python -m pip install --requirement requirements/tests.txt
- name: Run test suite
run: |
pytest --color yes --mpl-results-path=test_results -Werror
- uses: actions/upload-artifact@v3
if: failure()
with:
name: test_results
path: test_results/