Skip to content

chore(deps): update actions/setup-python action to v5 #29

chore(deps): update actions/setup-python action to v5

chore(deps): update actions/setup-python action to v5 #29

Workflow file for this run

name: Black code style check
on: [push]
jobs:
black:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install apt dependencies
run: |
sudo apt-get update && sudo apt-get install python3 python3-pip -y
- name: Install pip dependencies
run: |
pip3 install black
- name: Check code style with Black
run: |
black --check --diff --line-length 79 .