chore(deps-dev): bump ruff from 0.4.9 to 0.6.7 #1170
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 Docker Image Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-docker-image: | |
name: Test Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- # Add support for more platforms with QEMU (optional) | |
# https://github.com/docker/setup-qemu-action | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# The build runs some tests on the built binary to make sure it works as part of its build | |
- name: Test Build | |
id: docker_build | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: Dockerfile | |
push: false | |
platforms: linux/amd64,linux/arm64 | |
# https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#registry-cache | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |