Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

[pre-commit.ci] pre-commit autoupdate (#11) #76

[pre-commit.ci] pre-commit autoupdate (#11)

[pre-commit.ci] pre-commit autoupdate (#11) #76

Workflow file for this run

# GitHub Actions workflow for testing and continuous integration.
#
# This file performs testing using tox and tox.ini to define and configure the test environments.
name: CI Tests
on:
push:
branches:
- main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed.
# tags: # run CI if specific tags are pushed
pull_request:
# branches: # only build on PRs against 'main' if you need to further limit when CI is run.
# - main
jobs:
# Github Actions supports ubuntu, windows, and macos virtual environments:
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
ci_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
- name: py3.8 - minimal dependencies | coverage
os: ubuntu-latest
python: 3.8
toxenv: py38-test-cov
- name: py3.8 - all optional dependencies | coverage
os: ubuntu-latest
python: 3.8
toxenv: py38-test-alldeps-cov
- name: OS X - py3.8 - all optional dependencies
os: macos-latest
python: 3.8
toxenv: py38-test-alldeps
- name: Windows - py3.8 - all optional dependencies
os: windows-latest
python: 3.8
toxenv: py38-test-alldeps
# - name: py3.8 - with oldest supported version of all dependencies
# os: ubuntu-16.04
# python: 3.8
# toxenv: py37-test-oldestdeps
# - name: py3.8 - with latest dev versions of key dependencies
# os: ubuntu-latest
# python: 3.8
# toxenv: py38-test-devdeps
# - name: Test building of Sphinx docs
# os: ubuntu-latest
# python: 3.x
# toxenv: build_docs
steps:
# --------------------
# Setup
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox codecov
# --------------------
# Run Tests
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
# --------------------
# Cleanup
- name: Upload coverage to codecov
if: contains(matrix.toxenv, '-cov')
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml