1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-19 09:16:27 +02:00
ultrajson/.github/workflows/test.yml
2020-09-08 21:00:20 +03:00

61 lines
1.7 KiB
YAML

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [ "3.6", "3.7", "3.8"]
os: [ubuntu-18.04, ubuntu-16.04, macos-latest, windows-2019]
include:
# PyPy3
- { python-version: "pypy3", os: ubuntu-18.04 }
- { python-version: "pypy3", os: ubuntu-16.04 }
# Dev versions
- { python-version: "3.9-dev", os: ubuntu-18.04 }
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }} (deadsnakes)
uses: deadsnakes/action@v1.0.0
if: endsWith(matrix.python-version, '-dev')
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
if: "!endsWith(matrix.python-version, '-dev')"
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
python -m pip install -U "pip>=20.1"
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key:
${{ matrix.os }}-${{ matrix.python-version }}-v2-${{
hashFiles('**/setup.py') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-v2-
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U pytest
python -m pip install .
- name: Tests
shell: bash
run: |
pytest