Skip to content

Copybara upstream sync: 645984675 #87

Copybara upstream sync: 645984675

Copybara upstream sync: 645984675 #87

Workflow file for this run

name: Pytype
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
pytype:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run pytype
run: |
poetry run pytype --config pytype.conf