Skip to content

Add 2023-07

Add 2023-07 #16

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.version }}
strategy:
matrix:
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest mock pytest-cov
python setup.py install
pytest --cov=./ --cov-report=xml
- name: Run Tests
run: python -m pytest -v
- name: upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
name: codecov-umbrella
fail_ci_if_error: true