Skip to content

Bump pytest from 7.3.2 to 7.4.0 (#3220) #1263

Bump pytest from 7.3.2 to 7.4.0 (#3220)

Bump pytest from 7.3.2 to 7.4.0 (#3220) #1263

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Lint
permissions:
contents: read
jobs:
chore:
name: Lint and check format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install virtualenv
run: |
pip install virtualenv
virtualenv --python=python3 .venv
- name: Print environment
run: |
source .venv/bin/activate
python --version
pip --version
- name: make lint
run: |
source .venv/bin/activate
make lint