Skip to content

Commit

Permalink
Merge pull request #72 from google/ci
Browse files Browse the repository at this point in the history
Temporarily disable mypy.
  • Loading branch information
AidenRHall authored Aug 30, 2023
2 parents 386a7fc + 28185af commit 33a1322
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ jobs:
run: pip3 install ruff
- name: Run ruff checks
run: ruff check src
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: pip3 install mypy
- name: Run mypy checks
run: mypy src/
# mypy:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: '3.11'
# cache: 'pip'
# - name: Install dependencies
# run: pip3 install mypy
# - name: Run mypy checks
# run: mypy src/
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
needs: [ruff, mypy]
needs: [ruff]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 33a1322

Please sign in to comment.