Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #527

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #527

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
tests:
name: run tests with tox
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- name: Checkout Source
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: >-
pip install
-c requirements/constraints.txt
-r requirements/ci.in
tox-gh-actions
- name: Run tox
run: tox