Skip to content

Automated Code Change #1768

Automated Code Change

Automated Code Change #1768

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.11"]
steps:
# Use 25.x for protobuf 4 compatibility: https://protobuf.dev/support/version-support/#python
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "25.x"
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: ./run_tests.sh