Install QEMU from static binaries #309
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
on: | |
push: | |
branches: | |
- "main" | |
- "*" | |
pull_request: | |
jobs: | |
setup-docker: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-12, macos-13] | |
name: A job to perform a self-test on this Github Action | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Docker on macOS using Colima, Lima-VM, and Homebrew. | |
uses: ./ # Uses an action in the root directory | |
id: docker | |
- name: Get the Docker client version | |
run: | | |
echo "Docker client version: ${{ steps.docker.outputs.docker-client-version }}" | |
- name: Get the Colima version | |
run: | | |
echo "Colima version: ${{ steps.docker.outputs.colima-version }}" |