Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Update grpcio-tools requirement from ==1.57.* to >=1.57,<1.60 #266

Update grpcio-tools requirement from ==1.57.* to >=1.57,<1.60

Update grpcio-tools requirement from ==1.57.* to >=1.57,<1.60 #266

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- main
jobs:
lint_and_test:
name: Linting and Testing
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Pylinting
run: make lint
- name: Tests
run: make all_test