Skip to content

yay debugging in the CI #537

yay debugging in the CI

yay debugging in the CI #537

name: Test Python Client on Many Python Versions
on: [push]
jobs:
image:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Install Dependencies
working-directory: ${{github.workspace}}/python-client
run: |
sudo apt-get install -y openjdk-11-jdk
pip3 install .[test,dev]
- name: Running Tests
working-directory: ${{github.workspace}}/python-client
run: |
echo running on branch ${GITHUB_REF##*/}
pytest