Skip to content

chore(deps): update dependency virtualenv to v20.26.2 #1118

chore(deps): update dependency virtualenv to v20.26.2

chore(deps): update dependency virtualenv to v20.26.2 #1118

Workflow file for this run

# Based on https://github.com/actions/starter-workflows/blob/main/ci/python-package.yml
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# https://github.com/ymyzk/tox-gh-actions
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox