summaryrefslogtreecommitdiff
path: root/.github/workflows/python-nightly.yml
blob: 5743dfbb60528e597536e796d801fdc8ccae620a (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# 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:
  push:
    branches:
      - "**/*nightly*"
  schedule:
    # Run at 2:22am early every morning Eastern time (6/7:22 UTC)
    # so that we get tips of CPython development tested.
    # https://crontab.guru/#22_7_%2a_%2a_%2a
    - cron: "22 7 * * *"
  workflow_dispatch:

defaults:
  run:
    shell: bash

env:
  PIP_DISABLE_PIP_VERSION_CHECK: 1
  COVERAGE_IGOR_VERBOSE: 1

permissions:
  contents: read

concurrency:
  group: "${{ github.workflow }}-${{ github.ref }}"
  cancel-in-progress: true

jobs:
  tests:
    name: "Python ${{ 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"
          # https://github.com/actions/setup-python#available-versions-of-pypy
          - "pypy-3.7-nightly"
          - "pypy-3.8-nightly"
          - "pypy-3.9-nightly"
      fail-fast: false

    steps:
      - name: "Check out the repo"
        uses: "actions/checkout@v3"

      - name: "Install ${{ matrix.python-version }} with deadsnakes"
        # uses: deadsnakes/action@v2.1.1
        uses: deadsnakes/action@7ab8819e223c70d2bdedd692dfcea75824e0a617
        if: "!startsWith(matrix.python-version, 'pypy-')"
        with:
          python-version: "${{ matrix.python-version }}"

      - name: "Install ${{ matrix.python-version }} with setup-python"
        uses: "actions/setup-python@v4"
        if: "startsWith(matrix.python-version, 'pypy-')"
        with:
          python-version: "${{ matrix.python-version }}"

      - name: "Show diagnostic info"
        run: |
          set -xe
          python -VV
          python -m site
          python -m coverage debug sys
          python -m coverage debug pybehave

      - name: "Install dependencies"
        run: |
          python -m pip install --require-hashes -r requirements/tox.pip

      - name: "Run tox"
        run: |
          python -m tox -- -rfsEX