Skip to content

[WIP] Adding support for M1 runners #285

[WIP] Adding support for M1 runners

[WIP] Adding support for M1 runners #285

Workflow file for this run

on:
push:
branches:
- "main"
pull_request:
jobs:
setup-docker:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13, macos-14]
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: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
- 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 }}"