Skip to content

ci: define workflows in this repository #369

ci: define workflows in this repository

ci: define workflows in this repository #369

Workflow file for this run

on: [push, pull_request]
name: Interop
jobs:
interop:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
go: [ "1.23.x", "1.24.x" ]
steps:
- uses: actions/checkout@v4
- uses: nanasess/setup-chromedriver@v2
with:
# Optional: do not specify to match Chrome's version
chromedriver-version: '124.0.6367.62'
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build interop server
run: go build -o interopserver interop/main.go
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
run: pip install -r interop/requirements.txt
- name: Run interop tests
run: |
./interopserver &
timeout 120 python interop/interop.py