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(b97e27a81df9accd6ef0e4ea38b818c8a8500608) #1

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

feat(ci): update from atlas.workflows(b97e27a81df9accd6ef0e4ea38b818c8a8500608) #1

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"