yay debugging in the CI #537
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |