build(deps): bump docker/setup-qemu-action from 2 to 3 #3
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
# SPDX-FileCopyrightText: © 2022 Siemens AG | |
# SPDX-FileCopyrightText: © Gaurav Mishra <[email protected]> | |
# SPDX-License-Identifier: GPL-2.0-only AND LGPL-2.1-only | |
name: Docker test | |
on: | |
pull_request | |
jobs: | |
docker-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build images | |
run: docker compose build | |
- name: Test cluster | |
run: src/testing/docker/test-cluster.sh | |
- name: Test standalone | |
run: src/testing/docker/test-standalone.sh |