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

feat(ci): update from atlas.workflows(f368e462afa152d1d51f5363a11cf6353a389e79) #3

feat(ci): update from atlas.workflows(f368e462afa152d1d51f5363a11cf6353a389e79)

feat(ci): update from atlas.workflows(f368e462afa152d1d51f5363a11cf6353a389e79) #3

Workflow file for this run

name: Formatter
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
- feature/**
jobs:
formatter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add a problem matcher
run: echo "::add-matcher::.github/workflows/matchers/black.json"
- name: Format
uses: psf/black@stable
with:
options: "--check --diff --color --line-length 120"
jupyter: true