blob: 58b18d3f9a310483af48e082f76e60a8edb8a10f (
plain)
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
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
name: "Python Nightly Tests"
on:
schedule:
# Run at 2:22am early Saturday morning Eastern time (6/7:22 UTC)
# so that we get tips of CPython development tested.
# https://crontab.guru/#22_7_*_*_6
- cron: "22 7 * * 6"
workflow_dispatch:
defaults:
run:
shell: bash
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
COVERAGE_IGOR_VERBOSE: 1
jobs:
tests:
name: "Python nightly ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
# When changing this list, be sure to check the [gh-actions] list in
# tox.ini so that tox will run properly. PYVERSIONS
# Available versions:
# https://launchpad.net/~deadsnakes/+archive/ubuntu/nightly/+packages
- "3.9-dev"
- "3.10-dev"
- "3.11-dev"
fail-fast: false
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Install Python ${{ matrix.python-version }}"
uses: "deadsnakes/action@v2.1.1"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install -r requirements/tox.pip
- name: "Run tox for ${{ matrix.python-version }}"
run: |
python -m tox -- -rfsEX
|