Skip to content

add: fetch metadata archives #2

add: fetch metadata archives

add: fetch metadata archives #2

Workflow file for this run

name: black format
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Setup python and black formatter
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install "black<24"
- name: Format with black
run: |
black --diff --check $(git ls-files '*.py')