Skip to content

Bump hypothesis from 6.82.6 to 6.82.7 #365

Bump hypothesis from 6.82.6 to 6.82.7

Bump hypothesis from 6.82.6 to 6.82.7 #365

Workflow file for this run

name: Python CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
# Matrix Strategy
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python environment
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv requirements --dev > requirements.txt
pip install -r requirements.txt
- name: Run test suite
run: python -m unittest