Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim committed Dec 18, 2024
1 parent 7c04aa7 commit 8020261
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@ on:
branches:
- '*'
jobs:
LintsBlack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./app"
- run: ls -A
LintsFlake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: py-actions/flake8@v2
with:
path: "./app"
args: "--statistics --count --ignore E501"
LintsIsort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: isort/isort-action@master
with:
sort-paths: "./app"
# LintsBlack:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: psf/black@stable
# with:
# options: "--check --verbose"
# src: "./app"
# - run: ls -A
# LintsFlake8:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: py-actions/flake8@v2
# with:
# path: "./app"
# args: "--statistics --count --ignore E501"
# LintsIsort:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: isort/isort-action@master
# with:
# sort-paths: "./app"
LintsMyPy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- run: cd app
- run: cd app/
- name: Run Mypy
uses: jashparekh/mypy-action@v2
with:
Expand Down

0 comments on commit 8020261

Please sign in to comment.