Skip to content

Bump version to 1.1.0a1 #23

Bump version to 1.1.0a1

Bump version to 1.1.0a1 #23

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip==20.0.2
pip install -r requirements.txt
python setup.py bdist_wheel
pip install dist/*.whl
- name: Test with pytest
run: |
cd tests/ && py.test --cov jmespath --cov-report term-missing