Pillow/.github/workflows/test.yml

108 lines
2.5 KiB
YAML
Raw Normal View History

2019-09-22 17:09:27 +03:00
name: Test
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
2019-09-22 17:09:27 +03:00
matrix:
2019-09-22 23:09:59 +03:00
os: [
"ubuntu-latest",
"macOS-latest",
2019-09-22 23:09:59 +03:00
]
2019-09-22 17:09:27 +03:00
python-version: [
"pypy3",
2020-07-15 14:50:22 +03:00
"3.9-dev",
2019-11-04 23:55:50 +03:00
"3.8",
2019-09-22 17:09:27 +03:00
"3.7",
"3.6",
]
include:
- python-version: "3.6"
env: PYTHONOPTIMIZE=1
2020-06-27 14:39:44 +03:00
- python-version: "3.7"
env: PYTHONOPTIMIZE=2
# Include new variables for Codecov
- os: ubuntu-latest
codecov-flag: GHA_Ubuntu
- os: macOS-latest
codecov-flag: GHA_macOS
2019-09-22 23:09:59 +03:00
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
2019-09-22 17:09:27 +03:00
steps:
- uses: actions/checkout@v2
2019-09-22 17:09:27 +03:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
2019-11-04 10:06:09 +03:00
with:
python-version: ${{ matrix.python-version }}
2019-11-04 10:06:09 +03:00
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
2019-11-04 10:06:09 +03:00
- name: pip cache
2020-06-30 22:01:19 +03:00
uses: actions/cache@v2
2019-11-04 10:06:09 +03:00
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci/*.sh') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-
2019-11-04 10:06:09 +03:00
- name: Build system information
run: python .github/workflows/system-info.py
2019-09-22 23:09:59 +03:00
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
2019-09-22 17:09:27 +03:00
run: |
.ci/install.sh
env:
GHA_PYTHON_VERSION: ${{ matrix.python-version }}
2019-09-22 17:09:27 +03:00
2019-09-22 23:09:59 +03:00
- name: Install macOS dependencies
if: startsWith(matrix.os, 'macOS')
2019-09-22 23:09:59 +03:00
run: |
.github/workflows/macos-install.sh
- name: Build
run: |
.ci/build.sh
2019-09-22 17:09:27 +03:00
- name: Test
run: |
.ci/test.sh
2019-09-22 17:09:27 +03:00
- name: Prepare to upload errors
if: failure()
run: |
mkdir -p Tests/errors
shell: pwsh
2019-10-12 13:59:03 +03:00
- name: Upload errors
2020-06-30 22:01:19 +03:00
uses: actions/upload-artifact@v2
2019-10-12 13:59:03 +03:00
if: failure()
with:
name: errors
path: Tests/errors
- name: Docs
2020-04-03 18:14:48 +03:00
if: startsWith(matrix.os, 'ubuntu') && matrix.python-version == 3.8
run: |
pip install sphinx-removed-in sphinx-rtd-theme
make doccheck
2019-09-22 17:09:27 +03:00
- name: After success
run: |
.ci/after_success.sh
2019-11-20 15:00:59 +03:00
- name: Upload coverage
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
env:
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}