summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 5680b3808431b552342f5f64e2a0f0ca3c0d2c7a (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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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@v3
    - uses: actions/setup-python@v4
      with:
        python-version: "3.10"
    - uses: pre-commit/action@v3.0.0

  ci:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [macos-latest, ubuntu-latest, windows-latest]
        python-version:
          - name: pypy-3.8
            toxenv: pypy3-noextra-build
          - name: pypy-3.8
            toxenv: pypy3-noextra-tests
          - name: pypy-3.8
            toxenv: pypy3-format-build
          - name: pypy-3.8
            toxenv: pypy3-format-tests
          - name: pypy-3.8
            toxenv: pypy3-formatnongpl-build
          - name: pypy-3.8
            toxenv: pypy3-formatnongpl-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-formatnongpl-build
          - name: 3.7
            toxenv: py37-formatnongpl-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-formatnongpl-build
          - name: 3.8
            toxenv: py38-formatnongpl-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-formatnongpl-build
          - name: 3.9
            toxenv: py39-formatnongpl-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-formatnongpl-build
          - name: "3.10"
            toxenv: py310-formatnongpl-tests
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-noextra-build
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-noextra-tests
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-format-build
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-format-tests
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-formatnongpl-build
          - name: "3.11.0-beta - 3.11.0"
            toxenv: py311-formatnongpl-tests
          - name: "3.10"
            toxenv: docs-dirhtml
          - name: "3.10"
            toxenv: docs-doctest
          - name: "3.10"
            toxenv: docs-linkcheck
          - name: "3.10"
            toxenv: docs-spelling
          - name: "3.10"
            toxenv: docs-style
          - name: "3.10"
            toxenv: readme
          - name: "3.10"
            toxenv: safety
          - name: "3.10"
            toxenv: secrets
          - name: "3.10"
            toxenv: style
          - name: "3.10"
            toxenv: typing
        exclude:
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: readme
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: docs-linkcheck
          - os: windows-latest
            python-version:
              name: "3.10"
              toxenv: docs-style

    steps:
    - uses: actions/checkout@v3
    - name: Set up Python ${{ matrix.python-version.name }}
      uses: actions/setup-python@v4
      with:
        python-version: ${{ matrix.python-version.name }}
    - 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
    - name: Enable UTF-8 on Windows
      run: echo "PYTHONUTF8=1" >> $env:GITHUB_ENV
      if: runner.os == 'Windows' && startsWith(matrix.python-version.toxenv, 'py')
    - name: Run tox
      run: python -m tox -e "${{ matrix.python-version.toxenv }}"

  packaging:
    needs: ci
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
      with:
        fetch-depth: 0
    - uses: actions/setup-python@v4
      with:
        python-version: "3.10"
    - name: Install dependencies
      run: python -m pip install build
    - name: Create packages
      run: python -m build .
    - uses: actions/upload-artifact@v3
      with:
        name: dist
        path: dist
    - name: Publish package
      if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
      uses: pypa/gh-action-pypi-publish@release/v1
      with:
        user: __token__
        password: ${{ secrets.pypi_password }}
    - name: Create Release Notes
      if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
      uses: actions/github-script@v6
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        script: |
          await github.request(`POST /repos/${{ github.repository }}/releases`, {
            tag_name: "${{ github.ref }}",
            generate_release_notes: true
          });