Skip to content

⬆️ Bump virtualenv from 20.23.0 to 20.24.7 #1089

⬆️ Bump virtualenv from 20.23.0 to 20.24.7

⬆️ Bump virtualenv from 20.23.0 to 20.24.7 #1089

Workflow file for this run

name: Codestyle Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4.6.0
with:
python-version: "3.8"
- name: Install poetry
run: make poetry-download
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run style checks
run: make check-codestyle