Skip to content

Migrator to move to unified alerting #117

Migrator to move to unified alerting

Migrator to move to unified alerting #117

Workflow file for this run

# tox git actions integration was taken from:
# https://github.com/ymyzk/tox-gh-actions/tree/e11a29e2e5c73b6e48f5d4ee379f903476d013c0
# Tests unittest pass, documentation builds, and package builds
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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 setuptools wheel
pip install coverage[toml] virtualenv tox tox-gh-actions
# if you use tox-conda you can also add
# tox-conda to the above list of dependencies
- name: Test with tox
run: tox
#env:
# PLATFORM: ${{ matrix.platform }}
# from https://github.com/codecov/codecov-action
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true