Skip to content

Periodic item count monitor #349

Periodic item count monitor

Periodic item count monitor #349

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pre-commit/[email protected]
build:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- python-version: "3.6"
tox: min
- python-version: "3.7"
- python-version: "3.8"
- python-version: "3.9"
- python-version: "3.10"
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: |
python -m pip install --upgrade pip
pip install tox codecov
- name: Run tests
run: tox -e ${{ matrix.tox || 'py' }}
- name: Run docs and formatting tests
if: ${{ matrix.python-version == 3.10 }}
run: |
tox -e docs
- name: Upload coverage.xml to codecov
if: ${{ matrix.python-version == 3.10 }}
uses: codecov/codecov-action@v1