summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 7cd28b68d55c7d4f8340bb404cedf3eabe6cfef1 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
name: CI

on:
  push:
  pull_request:
  release:
    types: [published]
  schedule:
    # Daily at 3:21
    - cron: '21 3 * * *'

jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v2
    - uses: pre-commit/action@v2.0.0

  ci:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [macos-latest, ubuntu-latest, windows-latest]
        python-version:
          - name: pypy-3.7
            toxenv: pypy3-noextra-build
          - name: pypy-3.7
            toxenv: pypy3-noextra-tests
          - name: pypy-3.7
            toxenv: pypy3-format-build
          - name: pypy-3.7
            toxenv: pypy3-format-tests
          - name: pypy-3.7
            toxenv: pypy3-format_nongpl-build
          - name: pypy-3.7
            toxenv: pypy3-format_nongpl-tests
          - name: 3.7
            toxenv: py37-noextra-build
          - name: 3.7
            toxenv: py37-noextra-tests
          - name: 3.7
            toxenv: py37-format-build
          - name: 3.7
            toxenv: py37-format-tests
          - name: 3.7
            toxenv: py37-format_nongpl-build
          - name: 3.7
            toxenv: py37-format_nongpl-tests
          - name: 3.8
            toxenv: py38-noextra-build
          - name: 3.8
            toxenv: py38-noextra-tests
          - name: 3.8
            toxenv: py38-format-build
          - name: 3.8
            toxenv: py38-format-tests
          - name: 3.8
            toxenv: py38-format_nongpl-build
          - name: 3.8
            toxenv: py38-format_nongpl-tests
          - name: 3.9
            toxenv: py39-noextra-build
          - name: 3.9
            toxenv: py39-noextra-tests
          - name: 3.9
            toxenv: py39-format-build
          - name: 3.9
            toxenv: py39-format-tests
          - name: 3.9
            toxenv: py39-format_nongpl-build
          - name: 3.9
            toxenv: py39-format_nongpl-tests
          - name: "3.10"
            toxenv: py310-noextra-build
          - name: "3.10"
            toxenv: py310-noextra-tests
          - name: "3.10"
            toxenv: py310-format-build
          - name: "3.10"
            toxenv: py310-format-tests
          - name: "3.10"
            toxenv: py310-format_nongpl-build
          - name: "3.10"
            toxenv: py310-format_nongpl-tests
          - name: 3.9
            toxenv: docs-dirhtml
          - name: 3.9
            toxenv: docs-doctest
          - name: 3.9
            toxenv: docs-linkcheck
          - name: 3.9
            toxenv: docs-spelling
          - name: 3.9
            toxenv: docs-style
          - name: 3.9
            toxenv: readme
          - name: 3.9
            toxenv: safety
          - name: 3.9
            toxenv: secrets
          - name: 3.9
            toxenv: style
        exclude:
          - os: windows-latest
            python-version:
              name: 3.9
              toxenv: readme
          - os: windows-latest
            python-version:
              name: 3.9
              toxenv: docs-linkcheck
          - os: windows-latest
            python-version:
              name: 3.9
              toxenv: docs-style
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-noextra-build
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-noextra-tests
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-format-build
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-format-tests
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-format_nongpl-build
          - os: windows-latest
            python-version:
              name: pypy-3.7
              toxenv: pypy3-format_nongpl-tests
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: py310-noextra-tests
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: py310-format-tests
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: py310-format_nongpl-tests

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python ${{ matrix.python-version.name }}
      uses: actions/setup-python@v2
      with:
        python-version: ${{ matrix.python-version.name }}
    - name: Ensure we have new enough versions to respect python_version
      run: python -m pip install -U pip setuptools
    - name: Install dependencies
      run: >
        sudo apt-get update &&
        sudo apt-get install -y libenchant-dev libxml2-dev libxslt-dev
      if: runner.os == 'Linux' && startsWith(matrix.python-version.toxenv, 'docs-')
    - name: Install dependencies
      run: brew install enchant
      if: runner.os == 'macOS' && startsWith(matrix.python-version.toxenv, 'docs-')
    - name: Install tox
      run: python -m pip install 'tox>=4.0.0a9'
    - name: Run tox
      run: python -m tox -e "${{ matrix.python-version.toxenv }}"