Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Bump virtualenv from 20.31.2 to 20.36.1 (#179) #895

Bump virtualenv from 20.31.2 to 20.36.1 (#179)

Bump virtualenv from 20.31.2 to 20.36.1 (#179) #895

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
python-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run tests
run: pipenv run test
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
# Update output format to enable automatic inline annotations.
- name: Run Ruff
run: ruff check --output-format=github .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
# Use mypy command directly from lint.sh script.
- name: Run MyPy
run: pipenv run lint -- --only=mypy