Skip to content

Bump serde_json from 1.0.97 to 1.0.99 #5957

Bump serde_json from 1.0.97 to 1.0.99

Bump serde_json from 1.0.97 to 1.0.99 #5957

Workflow file for this run

name: Hypothesis tests
on:
push:
branches: [latest]
pull_request:
schedule:
- cron: "0 0 * * *" # daily
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Hypothesis tests
run: tox -e hypothesis,coverage
- name: Upload Python coverage to codecov
uses: codecov/codecov-action@v3
with:
flags: hypothesis-py
fail_ci_if_error: true
files: .tox/coverage.xml