Update Rust crate pyo3 to v0.23.4 #128
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: Run integration tests | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- server/** | |
- client/** | |
- tests/** | |
- ".github/workflows/run_integration_tests.yaml" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- server/** | |
- client/** | |
- tests/** | |
- ".github/workflows/run_integration_tests.yaml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: [self-hosted, linux, large, jammy, x64] | |
defaults: | |
run: | |
working-directory: integration-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up docker buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
config-inline: | | |
[registry."docker.io"] | |
mirrors = ["https://github-runner-dockerhub-cache.canonical.com:5000"] | |
- name: Install docker compose | |
run: | | |
sudo apt update | |
sudo apt install -y docker-compose-v2 | |
- name: Build and run integration tests | |
run: | | |
docker compose up --build --abort-on-container-exit |