Skip to content

Bump types-mock from 5.0.0.6 to 5.0.0.7 #39

Bump types-mock from 5.0.0.6 to 5.0.0.7

Bump types-mock from 5.0.0.6 to 5.0.0.7 #39

Workflow file for this run

name: Tox
on: [push, pull_request]
jobs:
tox:
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- 'pypy-3.8'
- 'pypy-3.9'
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade PyPA packages
run: python -m pip install -U pip setuptools wheel
- name: Install poetry
run: python -m pip install poetry
- name: Install tox and tox-gh-actions
run: python -m pip install -U 'tox==4.*' 'tox-gh-actions==3.*'
- name: Check with tox
run: tox