Skip to content

Added support for protocol buffers and integrations test added with refactors #7

Added support for protocol buffers and integrations test added with refactors

Added support for protocol buffers and integrations test added with refactors #7

name: integration
on:
workflow_call:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
test:
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.12"]
os: [ubuntu, windows]
include:
- python-version: "3.7.16"
os: macos
- python-version: "3.12"
os: macos
name: 'test (${{ matrix.os }} - py${{ matrix.python-version }})'
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.pull_request.head.ref }}
- name: Run tests
uses: ./.github/actions/test-integration
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
report_job: 'test (${{ matrix.os }} - py${{ matrix.python-version }})'