Merge pull request #12 from oremanj/close-agen #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
Windows: | |
name: 'Windows (${{ matrix.python }}, ${{ matrix.arch }}${{ matrix.extra_name }})' | |
timeout-minutes: 20 | |
runs-on: 'windows-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
# pypy doesn't currently work on Windows | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
arch: ['x86', 'x64'] | |
exclude: | |
- python: 'pypy-3.8-nightly' | |
arch: 'x86' | |
- python: 'pypy-3.9-nightly' | |
arch: 'x86' | |
continue-on-error: >- | |
${{ | |
( | |
endsWith(matrix.python, '-dev') | |
|| endsWith(matrix.python, '-nightly') | |
) | |
&& true | |
|| false | |
}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
# This allows the matrix to specify just the major.minor version while still | |
# expanding it to get the latest patch version including alpha releases. | |
# This avoids the need to update for each new alpha, beta, release candidate, | |
# and then finally an actual release version. actions/setup-python doesn't | |
# support this for PyPy presently so we get no help there. | |
# | |
# CPython -> 3.9.0-alpha - 3.9.X | |
# PyPy -> pypy-3.7 | |
python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python), matrix.python))[startsWith(matrix.python, 'pypy')] }} | |
architecture: '${{ matrix.arch }}' | |
cache: pip | |
cache-dependency-path: test-requirements.txt | |
- name: Run tests | |
run: ./ci.sh | |
shell: bash | |
env: | |
# Should match 'name:' up above | |
JOB_NAME: 'Windows (${{ matrix.python }}, ${{ matrix.arch }})' | |
Linux: | |
name: 'Linux (${{ matrix.python }}${{ matrix.extra_name }})' | |
timeout-minutes: 10 | |
runs-on: 'ubuntu-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ['pypy-3.8', 'pypy-3.9', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9-nightly', 'pypy-3.10-nightly'] | |
check_lint: ['0'] | |
extra_name: [''] | |
include: | |
- python: '3.10' | |
check_lint: '1' | |
extra_name: ', check lint' | |
continue-on-error: >- | |
${{ | |
( | |
matrix.check_formatting == '1' | |
|| endsWith(matrix.python, '-dev') | |
|| endsWith(matrix.python, '-nightly') | |
) | |
&& true | |
|| false | |
}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
if: "!endsWith(matrix.python, '-dev')" | |
with: | |
python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python), matrix.python))[startsWith(matrix.python, 'pypy')] }} | |
cache: pip | |
cache-dependency-path: test-requirements.txt | |
- name: Setup python (dev) | |
uses: deadsnakes/[email protected] | |
if: endsWith(matrix.python, '-dev') | |
with: | |
python-version: '${{ matrix.python }}' | |
- name: Run tests | |
run: ./ci.sh | |
env: | |
CHECK_LINT: '${{ matrix.check_lint }}' | |
# Should match 'name:' up above | |
JOB_NAME: 'Linux (${{ matrix.python }}${{ matrix.extra_name }})' | |
macOS: | |
name: 'macOS (${{ matrix.python }})' | |
timeout-minutes: 10 | |
runs-on: 'macos-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9-nightly', 'pypy-3.10-nightly'] | |
continue-on-error: >- | |
${{ | |
( | |
endsWith(matrix.python, '-dev') | |
|| endsWith(matrix.python, '-nightly') | |
) | |
&& true | |
|| false | |
}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python), matrix.python))[startsWith(matrix.python, 'pypy')] }} | |
cache: pip | |
cache-dependency-path: test-requirements.txt | |
- name: Run tests | |
run: ./ci.sh | |
env: | |
# Should match 'name:' up above | |
JOB_NAME: 'macOS (${{ matrix.python }})' |