Skip to content

Commit

Permalink
chore[ci]: merge mypy job into lint (vyperlang#3840)
Browse files Browse the repository at this point in the history
reduce the number of jobs, since mypy really belongs in the lint job
anyways.
  • Loading branch information
charles-cooper authored Mar 8, 2024
1 parent 5825e12 commit 787c562
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- name: Run isort
run: isort --check-only --diff ./vyper ./tests ./setup.py

- name: Run mypy
run: make mypy

docs:
runs-on: ubuntu-latest

Expand All @@ -53,24 +56,6 @@ jobs:
- name: Run Tox
run: TOXENV=docs tox -r

mypy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"

- name: Install Dependencies
run: pip install .[lint]

- name: Run mypy
run: make mypy

# "Regular"/core tests.
tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 787c562

Please sign in to comment.