Skip to content

update cache lazily

update cache lazily #2

Workflow file for this run

name: Black
on:
push:
branches:
- main # Change this to match your branch name, if needed
pull_request:
branches:
- main # Change this to match your branch name, if needed
jobs:
format:
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.11 # Replace 'x' with the desired Python version
- name: Install dependencies
run: pip install black
- name: Run Black
run: black .