Skip to content

Bump virtualenv from 16.7.7 to 20.26.6 #34

Bump virtualenv from 16.7.7 to 20.26.6

Bump virtualenv from 16.7.7 to 20.26.6 #34

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: '3.7'
architecture: x64
- name: Install dependencies
run: python -m pip install tox
- name: Run pre-commit tox job
run: tox -e pre-commit
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.5', '3.6', '3.7', '3.8']
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: python -m pip install tox
- name: Run ${{ matrix.python }} tox job
run: tox -e py