Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Fix exception handling for run_in_venv #205

Fix exception handling for run_in_venv

Fix exception handling for run_in_venv #205

Workflow file for this run

name: Style
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install pip dependencies
run: pip install -r requirements.txt
- name: Run formatting check
run: black . --check