Skip to content

Commit

Permalink
break up actions jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyabareeva committed Aug 2, 2024
1 parent baa05b6 commit 7a4995d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,3 @@ jobs:

- name: Run flake8
run: tox run -e lint

- name: Run mypy
run: tox run -e type
20 changes: 20 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# .github/workflows/type-lint.yml
name: Type-lint
on: push
jobs:
type-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup python 3.11
uses: actions/setup-python@v4
with:
cache: 'pip'
python-version: "3.11"

- name: Install tox-gh
run: pip install tox-gh

- name: Run mypy
run: tox run -e type

0 comments on commit 7a4995d

Please sign in to comment.