Skip to content

⬆️ Bump virtualenv from 20.13.0 to 20.26.6 in /requirements #524

⬆️ Bump virtualenv from 20.13.0 to 20.26.6 in /requirements

⬆️ Bump virtualenv from 20.13.0 to 20.26.6 in /requirements #524

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